Team Members

Kevin Gandhi - 20BCE1377

Nilashma Saha - 20BCE1514

Bacham Sai Venkata Teja - 20BCE1551

library(rgeos)
library(tidyverse)
library(sp)
library(sf)
library(dplyr)
library(leaflet)
library(RColorBrewer)
library(knitr)
library(kableExtra)
library(plotly)
# get city disclosing data

Cities_Disclosing_2018 = read.csv("Cities/Cities Disclosing/2018_Cities_Disclosing_to_CDP.csv",
                                  fileEncoding = "UTF-8")
Cities_Disclosing_2019 = read.csv("Cities/Cities Disclosing/2019_Cities_Disclosing_to_CDP.csv",
                                  fileEncoding = "UTF-8")
Cities_Disclosing_2020 = read.csv("Cities/Cities Disclosing/2020_Cities_Disclosing_to_CDP.csv",
                                  fileEncoding = "UTF-8")
# merge all years
Cities_Disclosing = rbind(Cities_Disclosing_2018, Cities_Disclosing_2019, Cities_Disclosing_2020)


# get city responses data
Cities_Responses_2018 = read.csv("Cities/Cities Responses/2018_Full_Cities_Dataset.csv",
                                 na.strings="")
Cities_Responses_2019 = read.csv("Cities/Cities Responses/2019_Full_Cities_Dataset.csv",
                                 na.strings="")
Cities_Responses_2020 = read.csv("Cities/Cities Responses/2020_Full_Cities_Dataset.csv",
                                 na.strings="")
# merge answers
Cities_Responses = rbind(Cities_Responses_2018,Cities_Responses_2019,Cities_Responses_2020)
# Analysis parameters
Year.Selected = 2020

# create Cities_Responses_KPI containing cities informaion. We wil fill this dataset during the analysis with computed KPIs
Cities_Responses_KPI = Cities_Disclosing %>% 
  filter(Year.Reported.to.CDP == Year.Selected) %>% 
  select(Year.Reported.to.CDP, Account.Number,Organization,City,Country,CDP.Region,First.Time.Discloser,Population,City.Location)

City Responses Analysis

Governance & Data Management

  • Sustainability goals in master planning: 73% of cities indicate that they incorporate sustainability goals and targets into the master planning for the city.
# Selecting responses
Cities_Responses_Cleaned =  Cities_Responses %>% 
  filter(Year.Reported.to.CDP == Year.Selected) %>% 
  filter(Question.Number == "1.0") %>% 
  drop_na(Response.Answer) %>% 
  select(Account.Number, Sustainability.Targets.Master.Planning = Response.Answer)

# joining with Cities_Responses_KPI
Cities_Responses_KPI = left_join(Cities_Responses_KPI, Cities_Responses_Cleaned, by = "Account.Number")

# Aggregate by answer
Cities_Responses_Cleaned %>% 
  group_by(Sustainability.Targets.Master.Planning) %>% 
  summarise(Nb.Organizations = n_distinct(Account.Number)) %>% 
  mutate(Percent.Organizations = round(Nb.Organizations/sum(Nb.Organizations) * 100,2))%>% 
  arrange(desc(Percent.Organizations)) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13)
Sustainability.Targets.Master.Planning Nb.Organizations Percent.Organizations
Yes 410 73.74
In progress 73 13.13
Intending to incorporate in the next 2 years 47 8.45
Do not know 18 3.24
Not intending to incorporate 8 1.44

Climate Hazards and Vulnerability

  • Risk & Vulnerability assessment: 68% of cities indicate that they have undertaken climate change risk/vulerability assessment
# Selecting responses
Cities_Responses_Cleaned = Cities_Responses %>% 
  filter(Year.Reported.to.CDP == Year.Selected) %>% 
  filter(Question.Number == "2.0") %>% 
  drop_na(Response.Answer) %>% 
  mutate_at("Response.Answer", as.factor) %>% 
  select(Account.Number, Risk.Assessment.Actions = Response.Answer)

# joining with Cities_Responses_KPI
Cities_Responses_KPI = left_join(Cities_Responses_KPI, Cities_Responses_Cleaned, by = "Account.Number")

# Aggregate by answer
City_Responses_Answer_KPI = Cities_Responses_Cleaned %>% 
  group_by(Risk.Assessment.Actions) %>% 
  summarise(Nb.Organizations = n_distinct(Account.Number)) %>% 
  mutate(Percent.Organizations = round(Nb.Organizations/sum(Nb.Organizations) * 100,2))%>% 
  arrange(desc(Percent.Organizations)) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13)
  • Climate hazards: The top 3 most significant climate hzards are: Flood and sea level rise, Extreme hot temperature, and Extreme Precipitation
Cities_Responses %>% 
  filter(Question.Number == "2.1",
         Year.Reported.to.CDP == Year.Selected) %>% 
  arrange(Account.Number, Column.Number, Row.Number) %>% 
  select(year = Year.Reported.to.CDP, Question.Number, Account.Number,Column.Number, Column.Name,Response.Answer) %>% 
  filter(Column.Name == "Climate Hazards") %>% 
  separate(Response.Answer,c("hazard_type", "hazard"), sep = " > ") %>% 
  drop_na(hazard_type) %>% 
  group_by(hazard_type) %>%
  summarise(nb = n()) %>% 
  arrange(desc(nb)) %>% 
  plot_ly() %>% 
  add_trace(y = ~factor(hazard_type), 
            x = ~nb, 
            marker = list(color = "gray"),
            type = "bar",
            orientation = "h")  %>% 
  layout(title = "Most Significant climate hazards faced by cities",
         yaxis = list(title = 'Climate hazards', categoryorder = "array",categoryarray = ~nb),
         xaxis = list(title = 'Number of cities impacted')
  )
  • Hazards impacts: Almost 75% of cited climate hazards have significantly impacted cities before the disclosing year.
# Aggregate by answer
Cities_Responses %>% 
  filter(Question.Number == "2.1",
         Year.Reported.to.CDP == Year.Selected) %>% 
  arrange(Account.Number, Column.Number, Row.Number) %>% 
  select(year = Year.Reported.to.CDP, Question.Number, Account.Number,Column.Number, Column.Name,Response.Answer) %>% 
  filter(Column.Number == 2)  %>% 
  drop_na(Response.Answer) %>% 
  group_by(Past.Hazard.Impact = Response.Answer) %>%
  summarise(nb = n()) %>% 
  mutate(Percent = round(nb/sum(nb) * 100,2)) %>% 
  arrange(desc(nb)) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13)
Past.Hazard.Impact nb Percent
Yes 1796 74.40
No 517 21.42
Do not know 101 4.18
  • Exposure: Number of Hazards The average number of hazards to which cities are exposed is 5. Cities of Amstrong (Argentina), Milano (Italy) and KwaDukuza (South Africa) are the most exposed to climate hzards , with more that 35 cimate hazards disclosed.
# select responses
Cities_Responses_Cleaned = Cities_Responses %>% 
  filter(Question.Number == "2.1",
         Year.Reported.to.CDP == Year.Selected) %>% 
  filter(Column.Name == "Climate Hazards") %>% 
  separate(Response.Answer,c("hazard_type", "hazard"), sep = " > ") %>% 
  drop_na(hazard_type) %>% 
  group_by(Account.Number) %>%
  summarise(Nb.Hazards.Type = n())


# plot
fig <- plot_ly() %>% 
  add_histogram(data = Cities_Responses_Cleaned, 
            x = ~Nb.Hazards.Type, 
            marker = list(color = "gray")) %>% 
  layout(bargap=0.1) %>% 
  add_segments(x=mean(Cities_Responses_Cleaned$Nb.Hazards.Type), y=0, 
               xend=mean(Cities_Responses_Cleaned$Nb.Hazards.Type), yend=100, 
               line=list(color="red", width = 3)) %>% 
  layout(showlegend = FALSE)

fig
# joining with Cities_Responses_KPI
Cities_Responses_KPI = left_join(Cities_Responses_KPI, Cities_Responses_Cleaned, by = "Account.Number")

# Table
Cities_Responses_KPI %>% 
  select(Organization, City, Country, CDP.Region, Nb.Hazards.Type) %>% 
  arrange(desc(Nb.Hazards.Type)) %>% 
  top_n(5) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13)
Organization City Country CDP.Region Nb.Hazards.Type
Armstrong Argentina Latin America 36
Comune di Milano Milano Italy Europe 36
KwaDukuza South Africa Africa 35
City of Urbana, IL United States of America North America 32
Rotorua Lakes Council Rotorua New Zealand Southeast Asia and Oceania 18
  • Exposure: Hazard Magnitude & Probability More than 50% of Hazards are caracterized with ‘High’ and ‘Medium High’ magnitude and probability of occuring.
Cities_Responses %>% 
  filter(Question.Number == "2.1",
         Year.Reported.to.CDP == Year.Selected,
         Column.Number %in% c(3,4)) %>% 
  select(Account.Number,Column.Name,Row.Number,Response.Answer) %>% 
  drop_na(Response.Answer) %>% 
  group_by(Column.Name, Response.Answer) %>% 
  summarise(nb = n()) %>% 
  mutate(Percent = round(nb/sum(nb) * 100,2)) %>% 
  mutate_at("Response.Answer", as.character) %>% 
  plot_ly() %>% 
  add_trace(x = ~Response.Answer, 
            y = ~Percent, 
            color = ~factor(Column.Name),
            colors = c("blue","grey"),
            type = "bar")  %>% 
  layout(title = "Pribability & Magnitude of Hazards",
         yaxis = list(title = 'Percent of answers',range = c(0, 35)), 
         xaxis = list(categoryorder = "array",
                      categoryarray = c("High", 
                                        "Medium High",
                                        "Medium",
                                        "Medium Low",
                                        "Low",
                                        "Do not know",
                                        "Does not currently impact the city"), 
                      title = "Levels"),
         barmode = 'group')
  • Hazards Exposure score: We propose here an exposure score by combining hazards’ probabilities and magnitude:

    • Recoding values: Converting the categorical values into numerical values \(High: 5, Medium High: 4, Medium: 3, Medium Low: 2, Low: 1, Does not currently impact the city: 0\)
    • Applying a weighted sum of hazards magnitude \(M_{i}\) and probability \(P_{i}\) values. For example, a city \(C_1\) reported 3 hazards \(H_{1}\), \(H_{2}\), and \(H_{3}\) wth respectively \([M_{1}, P_{1}]\), \([M_{2}, P_{2}]\), and \([M_{3}, P_{3}]\). Its exposure score is calculated folowing this formula:

    \(Exposure_{city} =\sum_{x = i}^{nb_{hazards}} Magnitude_{i} * Probability_{i}\)

    • Standardizing the score to generate values ranging from 0 to 1: \(ExposureScore_{city} = \frac {ExposureScore_{city} - min(Exposure_{city})}{max(Exposure_{city}) - min(Exposure_{city})}\)

Based on this indicator, the Top 3 most exposed cities are City of Urbana (in USA), city of KwaDukuza (in South Africa), and Rio de Janeiro (in Brazil).

# select responses to the specified question
Cities_Responses_Cleaned = Cities_Responses %>% 
  filter(Question.Number == "2.1",
         Year.Reported.to.CDP == Year.Selected,
         Column.Number %in% c(3,4)) %>% 
  select(Account.Number,Column.Name,Row.Number,Response.Answer) %>% 
  drop_na(Response.Answer) 


# reshape data 
Cities_Responses_Cleaned = reshape(Cities_Responses_Cleaned, 
                                         idvar = c("Account.Number","Row.Number"), 
                                         timevar = "Column.Name", 
                                         direction = "wide")
# rename columns
names(Cities_Responses_Cleaned) = c("Account.Number","Row.Number","Hazard.Magnitude","Hazard.Probability")


# agregate dat by answer
City_Responses_Answer_KPI = Cities_Responses_Cleaned %>% 
  drop_na(Hazard.Magnitude) %>% 
  drop_na(Hazard.Probability) %>%
  mutate(Hazard.Magnitude.Level = fct_collapse(Hazard.Magnitude,
                                               "5" = c("High"),
                                               "4" = c("Medium High"),
                                               "3" = c("Medium"),
                                               "2" = c("Medium Low"),
                                               "1" = c("Low"),
                                               "0" = c("Does not currently impact the city","Do not know"))) %>% 
  mutate(Hazard.Probability.Level = fct_collapse(Hazard.Probability,
                                                 "5" = c("High"),
                                                 "4" = c("Medium High"),
                                                 "3" = c("Medium"),
                                                 "2" = c("Medium Low"),
                                                 "1" = c("Low"),
                                                 "0" = c("Does not currently impact the city","Do not know"))) %>% 
  mutate_at(c("Hazard.Magnitude.Level","Hazard.Probability.Level"), as.character) %>% 
  mutate_at(c("Hazard.Magnitude.Level","Hazard.Probability.Level"), as.numeric) %>% 
  group_by(Account.Number)%>%
  mutate(Hazards.Exposure.Level=(sum(Hazard.Magnitude.Level*Hazard.Probability.Level))) %>% 
  distinct(Account.Number, .keep_all = TRUE)  %>% 
  select(Account.Number, Hazards.Exposure.Level) 

# joining with Cities_Responses_KPI
Cities_Responses_KPI = left_join(Cities_Responses_KPI, 
                                 City_Responses_Answer_KPI[,c("Account.Number","Hazards.Exposure.Level")], 
                                 by = "Account.Number")

# Table
Cities_Responses_KPI %>% 
  select(Organization, City, Country, CDP.Region, Hazards.Exposure.Level) %>% 
  arrange(desc(Hazards.Exposure.Level)) %>% 
  top_n(5) %>% 
  kable() %>%
  kable_styling(c("striped", "hover")) %>% 
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13)
Organization City Country CDP.Region Hazards.Exposure.Level
City of Urbana, IL United States of America North America 352
KwaDukuza South Africa Africa 342
Prefeitura do Rio de Janeiro Rio de Janeiro Brazil Latin America 301
City of Boynton Beach Boynton Beach United States of America North America 233
City of Sydney City of Sydney Australia Southeast Asia and Oceania 233
  • Adaptation challenges: Cities are asked to identify and describe factors that most greatly affect their ability to adapt to climate change. A list of factors is provided including various elements: Access to basic services, Access to healthcare, Access to education, Public health… We grouped these factors into 8 main sectors:

  • Economic: Access to basic service, Cost of living, Poverty, Unemployment, Economic health, economic diversity, and Budgetary capacity.

  • Health :Access to healthcare and Public health

  • Education : Access to education

  • Habitat : Housing

  • Infrastructure” : Rapid urbanization, Infrastructure conditions / maintenance, and Infrastructure capacity

  • Social : Inequality and Migration

  • Environment: Resource availability, Environmental conditions

  • Governance: Safety and security, Political stability, Political engagement / transparency, Government capacity, Community engagement, Land use planning, Access to quality / relevant data

In The figure below, we observe that the main challenging factors are related to economic, infrastructure and governance issues.

Cities_Responses_Cleaned = Cities_Responses %>% 
  filter(Question.Number == "2.2",
         Year.Reported.to.CDP == Year.Selected,
         Column.Number %in% c(1,2, 3)) %>% 
  select(Account.Number, Column.Name, Response.Answer, Row.Number)


# reshape data 
Cities_Responses_Cleaned = reshape(Cities_Responses_Cleaned, 
                                   idvar = c("Account.Number","Row.Number"), 
                                   timevar = "Column.Name", 
                                   direction = "wide")
# rename columns
names(Cities_Responses_Cleaned) = c("Account.Number","Row.Number","Adaptation.Factors.Impact","Level","Adaptation.Factors")

# Responses recoding
Cities_Responses_Cleaned = Cities_Responses_Cleaned %>% 
  filter(Adaptation.Factors.Impact == "Challenges",
         Level == "Significantly challenges") %>% 
  mutate(Adaptation.Factors.Grouped = fct_collapse(Adaptation.Factors,
                                                   "Adaptation.Challenges.Economic" = c("Access to basic service","Cost of living",
                                                                                        "Poverty","Unemployment","Economic health",
                                                                                        "Economic diversity","Budgetary capacity"),
                                                   "Adaptation.Challenges.Health" = c("Access to healthcare","Public health"),
                                                   "Adaptation.Challenges.Education" = c("Access to education"),
                                                   "Adaptation.Challenges.Habitat" = c("Housing"),
                                                   "Adaptation.Challenges.Infrastructure" = c("Rapid urbanization",
                                                                                              "Infrastructure conditions / maintenance","Infrastructure capacity"),
                                                   "Adaptation.Challenges.Social" = c("Inequality","Migration"),
                                                   "Adaptation.Challenges.Environment" = c("Resource availability","Environmental conditions"),
                                                   "Adaptation.Challenges.Governance" = c("Safety and security","Political stability",
                                                                                          "Political engagement / transparency", "Government capacity",
                                                                                          "Community engagement","Land use planning","Access to quality / relevant data"))) %>% 
  filter(Adaptation.Factors.Grouped %in% c("Adaptation.Challenges.Economic","Adaptation.Challenges.Health",
                                           "Adaptation.Challenges.Education","Adaptation.Challenges.Infrastructure",
                                           "Adaptation.Challenges.Social","Adaptation.Challenges.Environment",
                                           "Adaptation.Challenges.Governance")) %>% 
  # counring factors by city
  group_by(Account.Number,Adaptation.Factors.Grouped) %>% 
  summarise(Adaptation.Challenges.Nb=n()) %>% 
  select(Account.Number, Adaptation.Factors.Grouped, Adaptation.Challenges.Nb)

# plot most significant adaptation challenges

Cities_Responses_Cleaned %>% 
  group_by(Adaptation.Factors.Grouped)%>%
  summarise(Nb.Organizaton = sum(Adaptation.Challenges.Nb))  %>% 
  arrange(desc(Nb.Organizaton)) %>% 
  plot_ly() %>% 
  add_trace(y = ~factor(Adaptation.Factors.Grouped), 
            x = ~Nb.Organizaton, 
            marker = list(color = "gray"),
            type = "bar",
            orientation = "h")  %>% 
  layout(title = "Most Significant Adaptation challenges",
         yaxis = list(title = '', categoryorder = "array",categoryarray = ~Nb.Organizaton),
         xaxis = list(title = 'Number of cities faced to challenges')
  )
# reshaping data
Cities_Responses_Cleaned  = Cities_Responses_Cleaned %>% 
  pivot_wider(names_from = Adaptation.Factors.Grouped, values_from = Adaptation.Challenges.Nb) %>% 
  mutate_at(c("Adaptation.Challenges.Economic","Adaptation.Challenges.Health",
              "Adaptation.Challenges.Education","Adaptation.Challenges.Infrastructure",
              "Adaptation.Challenges.Social","Adaptation.Challenges.Environment",
              "Adaptation.Challenges.Governance"), ~replace_na(., 0)) %>% 
  mutate(Adaptation.Challenges.Level = sum(Adaptation.Challenges.Economic,Adaptation.Challenges.Health,
                                           Adaptation.Challenges.Education,Adaptation.Challenges.Infrastructure,
                                           Adaptation.Challenges.Social,Adaptation.Challenges.Environment,
                                           Adaptation.Challenges.Governance)) 


# joining with Cities_Responses_KPI
Cities_Responses_KPI = left_join(Cities_Responses_KPI, 
                                 Cities_Responses_Cleaned,
                                 by = "Account.Number")
  • Risk health system: 65% of cities reportes that their health system is facnig risks associated with climate change.
Cities_Responses_Cleaned = Cities_Responses %>% 
  filter(Year.Reported.to.CDP == Year.Selected) %>% 
  filter(Question.Number == "2.3") %>% 
  drop_na(Response.Answer) %>% 
  mutate_at("Response.Answer", as.factor) %>% 
  select(Account.Number, Risk.Health.System = Response.Answer)


# joining with Cities_Responses_KPI
Cities_Responses_KPI = left_join(Cities_Responses_KPI, Cities_Responses_Cleaned, by = "Account.Number")


# Aggregate by answer
Cities_Responses_Cleaned %>% 
  group_by(Risk.Health.System) %>% 
  summarise(Nb.Organizations = n_distinct(Account.Number)) %>% 
  mutate(Percent.Organizations = round(Nb.Organizations/sum(Nb.Organizations) * 100,2))%>% 
  arrange(desc(Percent.Organizations)) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13)
Risk.Health.System Nb.Organizations Percent.Organizations
Yes 288 65.75
No 77 17.58
Do not know 73 16.67

Adaptation

  • Main Adaptation Actions: Cities are asked to describe the main actions they are taking to reduce the risk and vulnerability to the identified climate hazards. Among the most implemented actions we can cite: flood mapping, tree planting and/or creation of green space, community engagement/education, and incorporating climate change into long-term planning documents.
Cities_Responses %>% 
  filter(Question.Number == "3.0",
         Year.Reported.to.CDP == Year.Selected,
         Column.Number == 2) %>% 
  select(Account.Number,Row.Number,Column.Number,Response.Answer) %>% 
  drop_na(Response.Answer) %>%
  group_by(Response.Answer) %>%
  summarise(nb = n()) %>% 
  mutate(Percent = round(nb/sum(nb) * 100,2)) %>% 
  arrange(desc(nb)) %>% 
  top_n(5) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13)
Response.Answer nb Percent
Flood mapping 226 8.35
Tree planting and/or creation of green space 208 7.69
Community engagement/education 196 7.25
Incorporating climate change into long-term planning documents 164 6.06
Crisis management including warning and evacuation systems 137 5.06
  • Number of adaptation actions: Cities declared in avearge 5 main adaptation actions to climate hazards. However, some cities such as Winsdor (in Canada), Honolulu (in USA), Buenos Aires, Rio de Janiero (Brazil) reported more than 25 adaptation actions.
City_Responses_Answer_KPI = Cities_Responses %>% 
  filter(Question.Number == "3.0",
         Year.Reported.to.CDP == Year.Selected,
         Column.Name == "Action") %>% 
  group_by(Account.Number) %>%
  summarise(Nb.Adaptation.Actions = n())

# joining with Cities_Responses_KPI
Cities_Responses_KPI = left_join(Cities_Responses_KPI, 
                                 City_Responses_Answer_KPI,
                                 by = "Account.Number")


# Table
Cities_Responses_KPI %>% 
  select(Organization, City, Country, CDP.Region, Nb.Adaptation.Actions) %>% 
  arrange(desc(Nb.Adaptation.Actions)) %>% 
  top_n(5) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13)
Organization City Country CDP.Region Nb.Adaptation.Actions
City of Windsor Windsor Canada North America 84
City and County of Honolulu Honolulu United States of America North America 40
City of Buenos Aires Buenos Aires Argentina Latin America 26
City of Boynton Beach Boynton Beach United States of America North America 25
Prefeitura do Rio de Janeiro Rio de Janeiro Brazil Latin America 25
Comune di Ferrara Ferrara Italy Europe 25
  • Adaptation plan: 55% of cities have a published plan that addresses climate change adaptation.
############################################  Adptation Plan

Cities_Responses_Cleaned = Cities_Responses %>% 
  filter(Year.Reported.to.CDP == Year.Selected) %>% 
  filter(Question.Number == "3.2") %>% 
  drop_na(Response.Answer) %>% 
  mutate_at("Response.Answer", as.factor) %>% 
  select(Account.Number, Adaptation.Plan = Response.Answer)


# joining with Cities_Responses_KPI
Cities_Responses_KPI = left_join(Cities_Responses_KPI, Cities_Responses_Cleaned, by = "Account.Number")


# Aggregate by answer
Cities_Responses_Cleaned %>% 
  group_by(Adaptation.Plan) %>% 
  summarise(Nb.Organizations = n_distinct(Account.Number)) %>% 
  mutate(Percent.Organizations = round(Nb.Organizations/sum(Nb.Organizations) * 100,2))%>% 
  arrange(desc(Percent.Organizations)) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13)
Adaptation.Plan Nb.Organizations Percent.Organizations
Yes 300 55.35
In progress 94 17.34
Intending to undertake in the next 2 years 93 17.16
Do not know 40 7.38
Not intending to undertake 15 2.77

City Wide Emissions

  • City-wide emissions inventory: 70% of cities reported having a city-wide emissions inventory.
Cities_Responses_Cleaned = Cities_Responses %>% 
  filter(Year.Reported.to.CDP == Year.Selected) %>% 
  filter(Question.Number == "4.0") %>% 
  drop_na(Response.Answer) %>% 
  mutate_at("Response.Answer", as.factor) %>% 
  select(Account.Number, City.Wide.Emissions.Inventory = Response.Answer, CDP.Region)


# joining with Cities_Responses_KPI
Cities_Responses_KPI = left_join(Cities_Responses_KPI, 
                                 Cities_Responses_Cleaned[ ,c("Account.Number", "City.Wide.Emissions.Inventory")],
                                 by = "Account.Number")


# Aggregate by answer
Cities_Responses_Cleaned %>% 
  group_by(City.Wide.Emissions.Inventory) %>% 
  summarise(Nb.Organizations = n_distinct(Account.Number)) %>% 
  mutate(Percent.Organizations = round(Nb.Organizations/sum(Nb.Organizations) * 100,2))%>% 
  arrange(desc(Percent.Organizations)) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13)
City.Wide.Emissions.Inventory Nb.Organizations Percent.Organizations
Yes 390 70.91
Intending to undertake in the next 2 years 88 16.00
In progress 47 8.55
Not intending to undertake 25 4.55
  • city-wide emissions inventory by region: We observe that city-wde emissions inventory reporting depending on the regions. The proportion of cities that are nit intending to have a city-wide emissions inventory is higher in Middle Easte and Africa (respectively 20% and 11%). More thatn 60% of cities located in South and West Asia are progressing in making emissions invenotry. And 30% of cities located in Latin America are intending to undertake it in the next 2 years.
Cities_Responses_Cleaned %>% 
  group_by(CDP.Region, City.Wide.Emissions.Inventory) %>% 
  summarise(Nb.Organizations = n_distinct(Account.Number)) %>% 
  mutate(Percent.Organizations = round(Nb.Organizations/sum(Nb.Organizations) * 100,2)) %>% 
  plot_ly() %>% 
  add_trace(x = ~CDP.Region, 
            y = ~Percent.Organizations, 
            color = ~factor(City.Wide.Emissions.Inventory),
            type = "bar")  %>% 
  layout(title = "City-wide Emissions Inventory",
         yaxis = list(title = 'Percent of answers'), 
         xaxis = list(title = 'Regions'),
         barmode = 'stack')
  • Primary protocol used for city-wide GHG emissions: More then half of cities used Global Protocol for Community Greenhouse Gas Emissions Inventories (GPC) as methofdology for reporting their GHG emissions. More than 20% of cities didn’t use an international standard for reporting the inventory of their GHG emissions.
# recoding GHG.Emissions.Primary.protocol
Cities_Responses_Cleaned = Cities_Responses %>% 
  filter(Year.Reported.to.CDP == Year.Selected) %>% 
  filter(Question.Number == "4.3") %>% 
  drop_na(Response.Answer) %>% 
  filter(Column.Name == "Primary protocol") %>% 
  filter(Response.Answer!= "Question not applicable") %>% 
  mutate(GHG.Emissions.Primary.protocol = fct_collapse(Response.Answer,
                                                "GPC" = "Global Protocol for Community Greenhouse Gas Emissions Inventories (GPC)",
                                                "International Standard for Determining Greenhouse Gas Emissions for Cities" = "International Standard for Determining Greenhouse Gas Emissions for Cities (UNEP and World Bank)",
                                                "2006 IPCC Guidelines" = "2006 IPCC Guidelines for National Greenhouse Gas Inventories",
                                                "ICLEI" = "U.S. Community Protocol for Accounting and Reporting of Greenhouse Gas Emissions (ICLEI)",
                                                "Regional or country specific methodology" = "Regional or country specific methodology",
                                                "City specific methodology" = "City specific methodology"))

Ptotocol.list = c("GPC",
                  "International Standard for Determining Greenhouse Gas Emissions for Cities",
                  "2006 IPCC Guidelines",
                  "ICLEI",
                  "Regional or country specific methodology",
                  "City specific methodology")

Cities_Responses_Cleaned$GHG.Emissions.Primary.protocol[!Cities_Responses_Cleaned$GHG.Emissions.Primary.protocol %in% Ptotocol.list] = "Other"

# joining with Cities_Responses_KPI
Cities_Responses_KPI = left_join(Cities_Responses_KPI, 
                                 Cities_Responses_Cleaned[ ,c("Account.Number", "GHG.Emissions.Primary.protocol")],
                                 by = "Account.Number")

# Table
Cities_Responses_Cleaned %>% 
  group_by(GHG.Emissions.Primary.protocol) %>% 
  summarise(Nb.Organizations = n_distinct(Account.Number)) %>% 
  mutate(Percent.Organizations = round(Nb.Organizations/sum(Nb.Organizations) * 100,2))%>% 
  arrange(desc(Percent.Organizations)) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13)
GHG.Emissions.Primary.protocol Nb.Organizations Percent.Organizations
GPC 230 55.16
2006 IPCC Guidelines 59 14.15
ICLEI 41 9.83
Regional or country specific methodology 39 9.35
NA 34 8.15
City specific methodology 14 3.36
  • GHG Emissions Evolution: 45% of cities reporting their GHG emissions indicated that their emissions decreased compared to the last inventory.
Cities_Responses_Cleaned = Cities_Responses %>% 
  filter(Year.Reported.to.CDP == Year.Selected,
         Question.Number == "4.8",
         Column.Name == "Change in emissions",
         Response.Answer != "Question not applicable") %>% 
  drop_na(Response.Answer) %>% 
  mutate_at("Response.Answer", as.factor) %>% 
  select(Account.Number, GHG.Emissions.Evolution = Response.Answer)


# joining with Cities_Responses_KPI
Cities_Responses_KPI = left_join(Cities_Responses_KPI, 
                                 Cities_Responses_Cleaned,
                                 by = "Account.Number")


# Table
Cities_Responses_Cleaned %>% 
  group_by(GHG.Emissions.Evolution) %>% 
  summarise(Nb.Organizations = n_distinct(Account.Number)) %>% 
  mutate(Percent.Organizations = round(Nb.Organizations/sum(Nb.Organizations) * 100,2))%>% 
  arrange(desc(Percent.Organizations)) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13)
GHG.Emissions.Evolution Nb.Organizations Percent.Organizations
Decreased 160 44.57
Increased 93 25.91
This is our first year of calculation 57 15.88
Do not know 26 7.24
Stayed the same 23 6.41
  • Consumption-based Inventory: Only 16% of cities reporting their GHG emissions indicated that they have a consumption-based inventory to measure emissions from consumption of goods and services by theur residents and 42% don’t intend to undertake it.
Cities_Responses_Cleaned = Cities_Responses %>% 
  filter(Year.Reported.to.CDP == Year.Selected,
         Question.Number == "4.9",
         Column.Name == "Response",
         Response.Answer != "Question not applicable") %>% 
  drop_na(Response.Answer) %>% 
  mutate_at("Response.Answer", as.factor) %>% 
  select(Account.Number, GHG.Emissions.Consumption = Response.Answer)

# joining with Cities_Responses_KPI
Cities_Responses_KPI = left_join(Cities_Responses_KPI, 
                                 Cities_Responses_Cleaned,
                                 by = "Account.Number")

# Table
Cities_Responses_Cleaned %>% 
  group_by(GHG.Emissions.Consumption) %>% 
  summarise(Nb.Organizations = n_distinct(Account.Number)) %>% 
  mutate(Percent.Organizations = round(Nb.Organizations/sum(Nb.Organizations) * 100,2))%>% 
  arrange(desc(Percent.Organizations)) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13)
GHG.Emissions.Consumption Nb.Organizations Percent.Organizations
Not intending to undertake 148 41.81
Intending to undertake in the next 2 years 80 22.60
Do not know 57 16.10
Yes 56 15.82
In progress 13 3.67
  • External Verfication: Only 25% of cities reporting their GHG emissions indicated that their GHG emissions data have been externally verified or audited.
Cities_Responses_Cleaned = Cities_Responses %>% 
  filter(Year.Reported.to.CDP == Year.Selected,
         Question.Number == "4.12",
         Response.Answer != "Question not applicable") %>% 
  drop_na(Response.Answer) %>% 
  mutate_at("Response.Answer", as.factor) %>% 
  select(Account.Number, GHG.Emissions.External.Verification = Response.Answer)

# joining with Cities_Responses_KPI
Cities_Responses_KPI = left_join(Cities_Responses_KPI, 
                                 Cities_Responses_Cleaned,
                                 by = "Account.Number")

# Table
Cities_Responses_Cleaned %>% 
  group_by(GHG.Emissions.External.Verification) %>% 
  summarise(Nb.Organizations = n_distinct(Account.Number)) %>% 
  mutate(Percent.Organizations = round(Nb.Organizations/sum(Nb.Organizations) * 100,2))%>% 
  arrange(desc(Percent.Organizations)) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13)
GHG.Emissions.External.Verification Nb.Organizations Percent.Organizations
Not intending to undertake 142 37.67
Yes 94 24.93
Intending to undertake in the next 2 years 61 16.18
Do not know 47 12.47
In progress 33 8.75

Emission reduction

  • Mitigation Target setting: 25% of cities don’t have a GHG emissions reduction target in place at the city level.
Cities_Responses_Cleaned = Cities_Responses %>% 
  filter(Year.Reported.to.CDP == Year.Selected,
         Question.Number == "5.0") %>% 
  drop_na(Response.Answer) %>% 
  mutate_at("Response.Answer", as.factor) %>% 
  select(Account.Number, GHG.Emissions.Reductions.Targets = Response.Answer)

# joining with Cities_Responses_KPI
Cities_Responses_KPI = left_join(Cities_Responses_KPI, 
                                 Cities_Responses_Cleaned,
                                 by = "Account.Number")

# Table
Cities_Responses_Cleaned %>% 
  group_by(GHG.Emissions.Reductions.Targets) %>% 
  summarise(Nb.Organizations = n_distinct(Account.Number)) %>% 
  mutate(Percent.Organizations = round(Nb.Organizations/sum(Nb.Organizations) * 100,2))%>% 
  arrange(desc(Percent.Organizations)) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13)
GHG.Emissions.Reductions.Targets Nb.Organizations Percent.Organizations
Base year emissions (absolute) target 273 46.59
No target 151 25.77
Fixed level target 81 13.82
Baseline scenario (business as usual) target 45 7.68
Base year intensity target 36 6.14
  • Mitigation Planning: 60% of cities declared having a climate change mtitgation or energy access plan for reducing GHG emissions.
Cities_Responses_Cleaned = Cities_Responses %>% 
  filter(Year.Reported.to.CDP == Year.Selected,
         Question.Number == "5.5") %>% 
  drop_na(Response.Answer) %>% 
  mutate_at("Response.Answer", as.factor) %>% 
  select(Account.Number, Emissions.Reductions.Mitigation.Planning = Response.Answer)

# joining with Cities_Responses_KPI
Cities_Responses_KPI = left_join(Cities_Responses_KPI, 
                                 Cities_Responses_Cleaned,
                                 by = "Account.Number")

# Table
Cities_Responses_Cleaned %>% 
  group_by(Emissions.Reductions.Mitigation.Planning) %>% 
  summarise(Nb.Organizations = n_distinct(Account.Number)) %>% 
  mutate(Percent.Organizations = round(Nb.Organizations/sum(Nb.Organizations) * 100,2))%>% 
  arrange(desc(Percent.Organizations)) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13)
Emissions.Reductions.Mitigation.Planning Nb.Organizations Percent.Organizations
Yes 315 60.69
In progress 84 16.18
Intending to undertake in the next 2 years 76 14.64
Do not know 31 5.97
Not intending to undertake 13 2.50

Opportunities

The most selected opportunities for addressing climate change are: Development of energy efficiency measures and technologies, Development of sustainable transport sector, Improved efficiency of municipal operations, and Development of waste management-sector.

Cities_Responses %>% 
  filter(Question.Number == "6.0",
         Year.Reported.to.CDP == Year.Selected,
         Column.Name == "Opportunity") %>% 
  select(Account.Number,Row.Number,Column.Number,Response.Answer) %>% 
  drop_na(Response.Answer) %>%
  group_by(Response.Answer) %>%
  summarise(nb = n()) %>% 
  mutate(Percent = round(nb/sum(nb) * 100,2)) %>% 
  arrange(desc(nb)) %>% 
  top_n(5) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13)
Response.Answer nb Percent
Development of energy efficiency measures and technologies 205 9.66
Development of sustainable transport sector 187 8.81
Improved efficiency of municipal operations 158 7.45
Development of waste management-sector 154 7.26
Development of climate change resiliency projects 151 7.12
  • Collaboration with businesses: More than 75% of cities reported that they collaborate in partnership with businesses in city sustainability projects.
Cities_Responses_Cleaned = Cities_Responses %>% 
  filter(Year.Reported.to.CDP == Year.Selected,
         Question.Number == "6.2") %>% 
  drop_na(Response.Answer) %>% 
  mutate_at("Response.Answer", as.factor) %>% 
  select(Account.Number, Opportunities.Collaboration = Response.Answer)

# joining with Cities_Responses_KPI
Cities_Responses_KPI = left_join(Cities_Responses_KPI, 
                                 Cities_Responses_Cleaned,
                                 by = "Account.Number")

# Table
Cities_Responses_Cleaned %>% 
  group_by(Opportunities.Collaboration) %>% 
  summarise(Nb.Organizations = n_distinct(Account.Number)) %>% 
  mutate(Percent.Organizations = round(Nb.Organizations/sum(Nb.Organizations) * 100,2))%>% 
  arrange(desc(Percent.Organizations)) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13)
Opportunities.Collaboration Nb.Organizations Percent.Organizations
Yes 392 75.82
In progress 47 9.09
Intending to undertake in the next 2 years 44 8.51
Do not know 27 5.22
Not intending to undertake 7 1.35

The most reported collaboration areas are: Energy, Transport, Waste, and Building/Infrastructure.

Cities_Responses %>% 
  filter(Question.Number == "6.2a",
         Year.Reported.to.CDP == Year.Selected,
         Column.Name == "Collaboration area",
         Response.Answer != "Question not applicable") %>% 
  select(Account.Number,Row.Number,Column.Number,Collaboration.area = Response.Answer) %>% 
  drop_na(Collaboration.area) %>%
  group_by(Collaboration.area) %>%
  summarise(nb = n()) %>% 
  mutate(Percent = round(nb/sum(nb) * 100,2)) %>% 
  arrange(desc(nb)) %>% 
  plot_ly() %>% 
  add_trace(y = ~factor(Collaboration.area), 
            x = ~nb, 
            marker = list(color = "gray"),
            type = "bar",
            orientation = "h")  %>% 
  layout(title = "CIty-Businesss Collaboration areas",
         yaxis = list(title = 'Collaboration areas', categoryorder = "array",categoryarray = ~nb),
         xaxis = list(title = 'Number of collaborations')
  )
  • Finance & Economic Opportunities: Cities reported the difernt mitigation, adaptation, water related and resilience projects they have planned by providing details on the estimated costs and status of these projects. The analysis of the stage of project developement, we observe that 25% of reported projects are in scoping stage, 16% in feasibility stage and only 16% are in implementation sage.
Cities_Responses %>% 
  filter(Year.Reported.to.CDP == Year.Selected,
         Question.Number == "6.5",
         Column.Name == "Stage of project development") %>% 
  select(Account.Number,Row.Number,Column.Number,Project.area = Response.Answer) %>% 
  drop_na(Project.area) %>%
  group_by(Project.area) %>%
  summarise(nb = n()) %>% 
  mutate(Percent = round(nb/sum(nb) * 100,2)) %>% 
  arrange(desc(nb)) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13)
Project.area nb Percent
Scoping 245 24.11
Project feasibility 171 16.83
Implementation 163 16.04
Pre-feasibility/impact assessment 148 14.57
Project structuring 131 12.89
Post-implementation 110 10.83
Transaction preparation 48 4.72

Concerning the status of financing, 33% of reported projects are partially funded and seeking additional funding and 45% are not funded projects seeking for full or partial funding.

Cities_Responses %>% 
  filter(Year.Reported.to.CDP == Year.Selected,
         Question.Number == "6.5",
         Column.Name == "Status of financing") %>% 
  select(Account.Number,Row.Number,Column.Number,Project.area = Response.Answer) %>% 
  drop_na(Project.area) %>%
  group_by(Project.area) %>%
  summarise(nb = n()) %>% 
  mutate(Percent = round(nb/sum(nb) * 100,2)) %>% 
  arrange(desc(nb)) %>% 
  top_n(3) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13)
Project.area nb Percent
Project partially funded and seeking additional funding 342 33.33
Project not funded and seeking full funding 280 27.29
Project not funded and seeking partial funding 176 17.15

Energy

  • Renewable energy/eletricity target: 45% of cities reported having a renweable/eletricity target.
Cities_Responses_Cleaned = Cities_Responses %>% 
  filter(Year.Reported.to.CDP == Year.Selected,
         Question.Number == "8.0") %>% 
  drop_na(Response.Answer) %>% 
  mutate_at("Response.Answer", as.factor) %>% 
  select(Account.Number, Renewable.Energy.Target = Response.Answer)

# joining with Cities_Responses_KPI
Cities_Responses_KPI = left_join(Cities_Responses_KPI, 
                                 Cities_Responses_Cleaned,
                                 by = "Account.Number")

# Table
Cities_Responses_Cleaned %>% 
  group_by(Renewable.Energy.Target) %>% 
  summarise(Nb.Organizations = n_distinct(Account.Number)) %>% 
  mutate(Percent.Organizations = round(Nb.Organizations/sum(Nb.Organizations) * 100,2))%>% 
  arrange(desc(Percent.Organizations)) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13)
Renewable.Energy.Target Nb.Organizations Percent.Organizations
Yes 246 46.68
Intending to undertake in the next 2 years 104 19.73
In progress 81 15.37
Do not know 52 9.87
Not intending to undertake 44 8.35

Electricity Source Mix:

# Agg by answer
Cities_Responses_Cleaned = Cities_Responses %>% 
  filter(Question.Number == "8.1",
         Year.Reported.to.CDP == Year.Selected,
         Row.Name == "Electricity source",
         Column.Name %in% c("Coal","Gas","Oil","Nuclear","Hydro","Biomass","Wind","Geothermal","Solar","Other sources")) %>% 
  select(Account.Number, Electricity.Source = Column.Name, Percent = Response.Answer) %>% 
  mutate_at("Percent", as.character) %>% 
  mutate_at("Percent", as.numeric)

# plot
fig <- plot_ly() %>% 
  add_trace(data = Cities_Responses_Cleaned,
            y = ~Percent,
            color = ~Electricity.Source,
            colors = "Dark2",
            type = "box") %>% 
  layout(title = "Electricity Source Mix",
         xaxis = list(title = "Electricity source"))
fig
  • What are the most used electricity source?
Cities_Responses_Cleaned %>% 
  group_by(Electricity.Source) %>% 
  summarise(Avg.Electricity.Source.Share = round(mean(Percent, na.rm = TRUE),2)) %>% 
  arrange(desc(Avg.Electricity.Source.Share)) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13)
Electricity.Source Avg.Electricity.Source.Share
Hydro 26.25
Gas 23.45
Coal 17.06
Nuclear 11.77
Wind 8.59
Oil 6.67
Other sources 5.22
Solar 3.96
Biomass 3.84
Geothermal 1.24
  • Top cities by electricity source
Electricity source Top 3 cities
Coal City of Kuala Lumpur (100%), City of Birmingham (100%), City of Johannesburg (99.3%)
Gas City of Juárez in Mexico (100%), Jakarta City Government in Indonesia (100%), City of Johannesburg (99.94%), Moscow Government (99.25%)
Oil City of Chorrera in Panama (100%), City of Rio Branco in Brazil (100%), City of Gibraltar (99.8%)
Nuclear City of Monaco (86.3%), City of Nice (72.3%), City of Paris (71.7%)
Hydro City of Niterói in Brazil (100%), City of Tuguegarao (100%), City of Aracaju in Brazil (100%)
Biomass City of Dar es Salaam in Tanzania (85%), City of laipeda in Lithuania (60%), City of Temuco in Chile (53.7%)
Wind City of Lexington in USA (100%), City of Örebro in Sweden (100%), City of Faro in Portugal (88%)
Geothermal City of Lince in Peru (60%), City of Akureyri in Iceland (30%), City of Reykjavík in Iceland (30%)
Solar City of Manhattan Beach in USA (100%), City of Santa Monica in USA (100%), City of West Hollywood in USA (90%)
  • Share of Renewable energy: Various cities reported that their electricy sources are 100% renewable (wind, hydro, solar, and geothermal). We observe that 30% of cities have more than half of their electricity source based on renewable energy.
Cities_Responses_Cleaned = Cities_Responses_Cleaned %>% 
  mutate(Electricity.Source = recode(Electricity.Source,
                                    "Coal" = "Electricity.Source.Coal",
                                    "Gas" = "Electricity.Source.Gas"  ,
                                    "Oil" = "Electricity.Source.Oil"  ,
                                    "Nuclear" = "Electricity.Source.Nuclear"  ,
                                    "Hydro" = "Electricity.Source.Hydro"  ,
                                    "Biomass"  = "Electricity.Source.Biomass" ,
                                    "Wind"  = "Electricity.Source.Wind" ,
                                    "Geothermal" =  "Electricity.Source.Geothermal" ,
                                    "Solar"=   "Electricity.Source.Solar" ,
                                    "Other sources" = "Electricity.Source.Other")) %>% 
  spread(Electricity.Source, Percent) %>% 
  mutate(Electricity.Source.Renewable = Electricity.Source.Hydro + Electricity.Source.Wind + Electricity.Source.Solar + Electricity.Source.Geothermal)
  
  
# joining with Cities_Responses_KPI
Cities_Responses_KPI = left_join(Cities_Responses_KPI, 
                                 Cities_Responses_Cleaned,
                                 by = "Account.Number")


# plot
fig <- plot_ly() %>% 
  add_histogram(data = Cities_Responses_KPI[!is.na(Cities_Responses_KPI$Electricity.Source.Renewable), ], 
                x = ~Electricity.Source.Renewable, 
                marker = list(color = "gray")) %>% 
  layout(bargap=0.1) %>% 
  layout(title = "Share of Renewable Energy",
         yaxis = list(title = 'Number of cities', categoryorder = "array",categoryarray = ~Electricity.Source.Renewable),
         xaxis = list(title = 'Percent of Renewable energy'))

fig
  • Energy efficiency target: 37% of cities reported having a target to increase energy efficency
Cities_Responses_Cleaned = Cities_Responses %>% 
  filter(Year.Reported.to.CDP == Year.Selected,
         Question.Number == "8.5") %>% 
  drop_na(Response.Answer) %>% 
  mutate_at("Response.Answer", as.factor) %>% 
  select(Account.Number, Energy.Efficnecy.Target = Response.Answer)

# joining with Cities_Responses_KPI
Cities_Responses_KPI = left_join(Cities_Responses_KPI, 
                                 Cities_Responses_Cleaned,
                                 by = "Account.Number")

# Table
Cities_Responses_Cleaned %>% 
  group_by(Energy.Efficnecy.Target) %>% 
  summarise(Nb.Organizations = n_distinct(Account.Number)) %>% 
  mutate(Percent.Organizations = round(Nb.Organizations/sum(Nb.Organizations) * 100,2))%>% 
  arrange(desc(Percent.Organizations)) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13)
Energy.Efficnecy.Target Nb.Organizations Percent.Organizations
Yes 156 37.41
In progress 93 22.30
Intending to undertake in the next 2 years 64 15.35
Do not know 61 14.63
Not intending to undertake 43 10.31

Transport

  • Distribution of transport mode share:
Cities_Responses_Cleaned = Cities_Responses %>% 
  filter(Year.Reported.to.CDP == Year.Selected,
         Question.Number == "10.1",
         Response.Answer != "Question not applicable") %>% 
  select(Account.Number, Transport.Mode.Passenger = Column.Name, Percent = Response.Answer) %>% 
  mutate_at("Percent", as.character) %>% 
  mutate_at("Percent", as.numeric)


# plot
fig <- plot_ly() %>% 
  add_trace(data = Cities_Responses_Cleaned,
            y = ~Percent,
            color = ~Transport.Mode.Passenger,
            colors = "Dark2",
            type = "box") %>% 
  layout(title = "Electricity Source Mix",
         xaxis = list(title = "Electricity source"))
fig

Private motorized transport is the most adopted transport mode with 50% of mode share in average.

Cities_Responses_Cleaned %>% 
  group_by(Transport.Mode.Passenger) %>% 
  summarise(Avg.Transport.Mode.Passenger = round(mean(Percent, na.rm = TRUE),2)) %>% 
  arrange(desc(Avg.Transport.Mode.Passenger)) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 12)
Transport.Mode.Passenger Avg.Transport.Mode.Passenger
Private motorized transport 52.91
Walking 15.21
Buses (including BRT) 14.77
Rail/Metro/Tram 7.60
Taxis or For Hire Vehicles 6.22
Cycling 5.58
Other 5.39
Micro-Mobility 1.65
Ferries/ River boats 0.50
  • Top 3 cities with high percent of cycling are: City of Del Carmen (Philippines), city of Providencia (Chile), and City of Rotterdam (Netherlands)
# recoding datset
Cities_Responses_Cleaned = Cities_Responses_Cleaned %>% 
  mutate(Transport.Mode.Passenger = fct_collapse( Transport.Mode.Passenger,
                                      "Transport.Mode.Passenger.Private.motorized"="Private motorized transport",
                                      "Transport.Mode.Passenger.Walking"=  "Walking",
                                      "Transport.Mode.Passenger.Public" = c("Buses (including BRT)",
                                                                            "Rail/Metro/Tram"),
                                      "Transport.Mode.Passenger.Other" = c("Taxis or For Hire Vehicles",
                                                                           "Other", "Micro-Mobility",
                                                                           "Ferries/ River boats"),
                                      "Transport.Mode.Passenger.Cycling"= "Cycling")) %>% 
  group_by(Account.Number, Transport.Mode.Passenger) %>% 
  summarise(Percent = sum(Percent)) %>% 
  spread(Transport.Mode.Passenger, Percent) 

# joining with Cities_Responses_KPI
Cities_Responses_KPI = left_join(Cities_Responses_KPI, 
                                 Cities_Responses_Cleaned,
                                 by = "Account.Number")

# show table
Cities_Responses_KPI %>%  
  select(Organization, City, Country, Transport.Mode.Passenger.Cycling) %>% 
  arrange(desc(Transport.Mode.Passenger.Cycling)) %>% 
  top_n(3) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13) 
Organization City Country Transport.Mode.Passenger.Cycling
Municipality of Del Carmen Del Carmen Philippines 100
Municipalidad de Providencia Providencia Chile 48
Municipalidad de Providencia Providencia Chile 48
  • Top 3 cities with high percent of public transport are: City of Comas (Peru), city of Hong Kong, and City of San Isidro (Peru)
Cities_Responses_KPI %>%  
  select(Organization, City, Country, Transport.Mode.Passenger.Public) %>% 
  arrange(desc(Transport.Mode.Passenger.Public)) %>% 
  top_n(3) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13) 
Organization City Country Transport.Mode.Passenger.Public
Municipalidad de Comas Comas Peru 85
Government of Hong Kong Special Administrative Region Hong Kong China, Hong Kong Special Administrative Region 78
Municipalidad de San Isidro (Lima) San Isidro (Lima) Peru 72
  • Low/zero-emission zone in the city: Only 13% of cities reported having a low or zero emission zone.
# subset dataset
Cities_Responses_Cleaned = Cities_Responses %>% 
  filter(Year.Reported.to.CDP == Year.Selected,
         Question.Number == "10.7") %>% 
  drop_na(Response.Answer) %>% 
  mutate_at("Response.Answer", as.factor) %>% 
  select(Account.Number, Low.Zero.Emission.Zone = Response.Answer)

# joining with Cities_Responses_KPI
Cities_Responses_KPI = left_join(Cities_Responses_KPI, 
                                 Cities_Responses_Cleaned,
                                 by = "Account.Number")

# Table
Cities_Responses_Cleaned %>% 
  group_by(Low.Zero.Emission.Zone) %>% 
  summarise(Nb.Organizations = n_distinct(Account.Number)) %>% 
  mutate(Percent.Organizations = round(Nb.Organizations/sum(Nb.Organizations) * 100,2))%>% 
  arrange(desc(Percent.Organizations)) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13) 
Low.Zero.Emission.Zone Nb.Organizations Percent.Organizations
No 398 79.92
Yes 65 13.05
Do not know 35 7.03

Food

  • Sustainable food policies: 50% of cities reported having policies related tp food cosumption
# subset data
Cities_Responses_Cleaned = Cities_Responses %>% 
  filter(Year.Reported.to.CDP == Year.Selected,
         Question.Number == "12.3",
         Column.Name == "Response")%>% 
  drop_na(Response.Answer) %>% 
  mutate_at("Response.Answer", as.factor) %>% 
  select(Account.Number, Food.Consumption.Policies = Response.Answer)


# joining with Cities_Responses_KPI
Cities_Responses_KPI = left_join(Cities_Responses_KPI, 
                                 Cities_Responses_Cleaned,
                                 by = "Account.Number")

# Show Table
Cities_Responses_Cleaned %>% 
  group_by(Food.Consumption.Policies) %>% 
  summarise(Nb.Organizations = n_distinct(Account.Number)) %>% 
  mutate(Percent.Organizations = round(Nb.Organizations/sum(Nb.Organizations) * 100,2))%>% 
  arrange(desc(Percent.Organizations)) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13)
Food.Consumption.Policies Nb.Organizations Percent.Organizations
Yes 232 48.95
No 154 32.49
Do not know 88 18.57
  • Actions to increase access to sustainable food

A few cities have implemened actions to increase access to sustainable food especially by limiting advertising high carbon food and taxing high carbon food.

Cities_Responses %>% 
  filter(Year.Reported.to.CDP == Year.Selected,
         Question.Number == "12.4",
         # Row.Number == 1,
         Column.Name == "Action implemented",
         Response.Answer != "Question not applicable") %>% 
  mutate_at("Row.Number", as.character) %>% 
  mutate(Action.Type = recode(Row.Number,
                                      "1" = "Subsidizing Fresh fruits/vegetables",
                                      "2" = "Taxing High Carbon Food" ,
                                      "3" = "Limiting advertising High Carbon Food" ,
                                      "4" = "Incentivizing frech vegetables vendor locations")) %>% 
  group_by(Response.Answer, Action.Type) %>% 
  summarise(Nb.Organizations = n_distinct(Account.Number)) %>% 
  mutate(Percent.Organizations = round(Nb.Organizations/sum(Nb.Organizations) * 100,2)) %>% 
  plot_ly() %>% 
  add_trace(x = ~Action.Type ,
            y = ~Nb.Organizations,
            color = ~Response.Answer,
            colors = "Dark2",
            type = "bar") %>% 
  layout(title = "Actions to increase access to sustainable foods",
         yaxis = list(title = 'Number of organizations'))

Water Security

  • Water supply: The majority of cities has potable water supply services to more than 90% of their population (60% of cities reported having potable water supply services to 100% of their population).
Cities_Responses_Cleaned = Cities_Responses %>% 
  filter(Year.Reported.to.CDP == Year.Selected,
         Question.Number == "14.1") %>% 
  select(Account.Number, Potable.Water.Supply.Percent = Response.Answer) %>% 
  mutate_at("Potable.Water.Supply.Percent", as.character) %>% 
  mutate_at("Potable.Water.Supply.Percent", as.numeric) %>% 
  drop_na(Potable.Water.Supply.Percent) 

# plot
fig <- plot_ly() %>% 
  add_histogram(data = Cities_Responses_Cleaned, 
                x = ~Potable.Water.Supply.Percent, 
                marker = list(color = "gray")) %>% 
  layout(bargap=0.1) %>% 
  layout(showlegend = FALSE)
fig

The table below presents cities that reported lowest percent of population with potable water supply service:

# joining with Cities_Responses_KPI
Cities_Responses_KPI = left_join(Cities_Responses_KPI, 
                                 Cities_Responses_Cleaned,
                                 by = "Account.Number")


# Table
Cities_Responses_KPI %>%  
  select(Organization, City, Country, Potable.Water.Supply.Percent) %>% 
  arrange(Potable.Water.Supply.Percent) %>% 
  filter(Potable.Water.Supply.Percent > 1) %>% 
  top_n(-5) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13) 
Organization City Country Potable.Water.Supply.Percent
Ayuntamiento de Tonalá Mexico 10
Village of South Barrington, IL South Barrington United States of America 29
Municipio de San Pedro de Urabá San Pedro de Urabá Colombia 38
City of Lagos Lagos Nigeria 40
Municipio de Cajamarca Colombia 47
  • Water management: 48% of cities reported having a publicly available Water Resource Management Strategy.
# Subset data
Cities_Responses_Cleaned = Cities_Responses %>% 
  filter(Year.Reported.to.CDP == Year.Selected,
         Question.Number == "14.4") %>% 
  drop_na(Response.Answer) %>% 
  mutate_at("Response.Answer", as.factor) %>% 
  select(Account.Number, Water.Resource.Management.strategy = Response.Answer)

# joining with Cities_Responses_KPI
Cities_Responses_KPI = left_join(Cities_Responses_KPI, 
                                 Cities_Responses_Cleaned,
                                 by = "Account.Number")

# Table
Cities_Responses_Cleaned %>% 
  group_by(Water.Resource.Management.strategy) %>% 
  summarise(Nb.Organizations = n_distinct(Account.Number)) %>% 
  mutate(Percent.Organizations = round(Nb.Organizations/sum(Nb.Organizations) * 100,2))%>% 
  arrange(desc(Percent.Organizations)) %>% 
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13) 
Water.Resource.Management.strategy Nb.Organizations Percent.Organizations
Yes 236 48.36
In progress 86 17.62
Intending to undertake in next 2 years 83 17.01
Not intending to undertake 83 17.01

City KPI Geovisualisation

# load data
City_Location = read.csv("CDP-Cities-goegraphical-coordinates.csv")

# join coordinates with city kpi
Cities_Responses_KPI_Location = left_join(Cities_Responses_KPI,
                                          City_Location[ ,c("Account.Number","lat","long","Country.Code.3")],
                                          by = "Account.Number")

Mapping Risk assessment Actions

# plot map Risk.Assessment.Actions

Cities_Responses_KPI_Location = Cities_Responses_KPI_Location %>% 
  mutate_at("Risk.Assessment.Actions", as.character)

pal <- colorFactor(c("green","deepskyblue","blue","red","gray50","black"),
                   levels =unique(Cities_Responses_KPI_Location$Risk.Assessment.Actions))

labels <- sprintf(
  "<strong>%s</strong><br/><strong>%s</strong><br/>",
  Cities_Responses_KPI_Location$Organization, Cities_Responses_KPI_Location$Risk.Assessment.Actions
) %>% 
  lapply(htmltools::HTML)

leaflet(data = Cities_Responses_KPI_Location, height = 400, width = "100%") %>% 
  addTiles() %>%
  addCircleMarkers(~long, ~lat, 
                   radius = 4,
                   color = ~pal(Risk.Assessment.Actions),
                   stroke = FALSE,
                   fillOpacity = 0.7,
                   popup = ~as.character(City), 
                   label = labels) %>% 
  addLegend(pal = pal, values = ~Risk.Assessment.Actions, opacity = 0.9, 
            title = "Risk Assessment Actions",
            position = "bottomright",
            labFormat = labelFormat(suffix = " "))

Mapping Emissions Reductions Mitigation Planning

# plot map Emissions.Reductions.Mitigation.Planning

Cities_Responses_KPI_Location = Cities_Responses_KPI_Location %>% 
  mutate_at("Emissions.Reductions.Mitigation.Planning", as.character)

pal <- colorFactor(c("green","gray50","blue","red","deepskyblue","black"),
                   levels =unique(Cities_Responses_KPI_Location$Emissions.Reductions.Mitigation.Planning))

labels <- sprintf(
  "<strong>%s</strong><br/><strong>%s</strong><br/>",
  Cities_Responses_KPI_Location$Organization, Cities_Responses_KPI_Location$Emissions.Reductions.Mitigation.Planning
) %>% 
  lapply(htmltools::HTML)

leaflet(data = Cities_Responses_KPI_Location, height = 400, width = "100%") %>% 
  addTiles() %>%
  addCircleMarkers(~long, ~lat, 
                   radius = 4,
                   color = ~pal(Emissions.Reductions.Mitigation.Planning),
                   stroke = FALSE,
                   fillOpacity = 0.7,
                   popup = ~as.character(City), 
                   label = labels) %>% 
  addLegend(pal = pal, values = ~Emissions.Reductions.Mitigation.Planning, opacity = 0.9, 
            title = "Emissions Reductions Mitigation Planning",
            position = "bottomright",
            labFormat = labelFormat(suffix = " "))

Mapping Renewable Energy Target

Cities_Responses_KPI_Location = Cities_Responses_KPI_Location %>% 
  mutate_at("Renewable.Energy.Target", as.character)

pal <- colorFactor(c("green","blue","black","red","deepskyblue", "gray50"),
                   levels =unique(Cities_Responses_KPI_Location$Renewable.Energy.Target))

labels <- sprintf(
  "<strong>%s</strong><br/><strong>%s</strong><br/>",
  Cities_Responses_KPI_Location$Organization, Cities_Responses_KPI_Location$Renewable.Energy.Target
) %>% 
  lapply(htmltools::HTML)

leaflet(data = Cities_Responses_KPI_Location, height = 400, width = "100%") %>% 
  addTiles() %>%
  addCircleMarkers(~long, ~lat, 
                   radius = 4,
                   color = ~pal(Renewable.Energy.Target),
                   stroke = FALSE,
                   dashArray = "5",
                   weight = 5,
                   fillOpacity = 0.7,
                   popup = ~as.character(City), 
                   label = labels) %>% 
  addLegend(pal = pal, values = ~Renewable.Energy.Target, opacity = 0.9, 
            title = "Renewable Energy Target",
            position = "bottomright",
            labFormat = labelFormat(suffix = " "))

Water Resource Management Strategy

Cities_Responses_KPI_Location = Cities_Responses_KPI_Location %>% 
  mutate_at("Water.Resource.Management.strategy", as.character)

pal <- colorFactor(c("green","blue","black","red","deepskyblue", "gray50"),
                   levels =unique(Cities_Responses_KPI_Location$Water.Resource.Management.strategy))

labels <- sprintf(
  "<strong>%s</strong><br/><strong>%s</strong><br/>",
  Cities_Responses_KPI_Location$Organization, Cities_Responses_KPI_Location$Water.Resource.Management.strategy
) %>% 
  lapply(htmltools::HTML)

leaflet(data = Cities_Responses_KPI_Location, height = 400, width = "100%") %>% 
  addTiles() %>%
  addCircleMarkers(~long, ~lat, 
                   radius = 4,
                   color = ~pal(Water.Resource.Management.strategy),
                   stroke = FALSE,
                   dashArray = "5",
                   weight = 5,
                   fillOpacity = 0.7,
                   popup = ~as.character(City), 
                   label = labels) %>% 
  addLegend(pal = pal, values = ~Water.Resource.Management.strategy, opacity = 0.9, 
            title = "Water Resource Management strategy",
            position = "bottomright",
            labFormat = labelFormat(suffix = " "))
## Warning in pal(Water.Resource.Management.strategy): Some values were outside
## the color scale and will be treated as NA

## Warning in pal(Water.Resource.Management.strategy): Some values were outside
## the color scale and will be treated as NA

Food Consumption Policies

Cities_Responses_KPI_Location = Cities_Responses_KPI_Location %>% 
  mutate_at("Food.Consumption.Policies", as.character)

pal <- colorFactor(c("green","blue","black","red","deepskyblue", "gray50"),
                   levels =unique(Cities_Responses_KPI_Location$Food.Consumption.Policies))

labels <- sprintf(
  "<strong>%s</strong><br/><strong>%s</strong><br/>",
  Cities_Responses_KPI_Location$Organization, Cities_Responses_KPI_Location$Food.Consumption.Policies
) %>% 
  lapply(htmltools::HTML)

leaflet(data = Cities_Responses_KPI_Location, height = 400, width = "100%") %>% 
  addTiles() %>%
  addCircleMarkers(~long, ~lat, 
                   radius = 4,
                   color = ~pal(Food.Consumption.Policies),
                   stroke = FALSE,
                   dashArray = "5",
                   weight = 5,
                   fillOpacity = 0.7,
                   popup = ~as.character(City), 
                   label = labels) %>% 
  addLegend(pal = pal, values = ~Food.Consumption.Policies, opacity = 0.9, 
            title = "Food Consumption Policies",
            position = "bottomright",
            labFormat = labelFormat(suffix = " "))
## Warning in pal(Food.Consumption.Policies): Some values were outside the color
## scale and will be treated as NA

## Warning in pal(Food.Consumption.Policies): Some values were outside the color
## scale and will be treated as NA

Conclusion

Data exploration

The objective of this analysis is t provide some insights and descritive statistics of cities disclosure data. We processed the data in order to provide aggregated tables and visualization enabling extracting the main trends from cities’ responses. The analysis enabled us to better understand and qualify cities’ performances in implementing actions for reducing their climate impacts and vulnerability.

KPI dataset generation

This exploratory analysis generated a dataset that we called: “Cities_Responses_KPI_Location”. This dataset contains KPIs extracted directly from raw data and reliable location coordinates that we can use for producing geo-visulaization.

This dataset may be used further by other Kagglers in order to perform more specific analysis such as cities’ clustering.

# show data
Cities_Responses_KPI_Location %>%  
  kable() %>%
  kable_styling(bootstrap_options = c("striped", "hover"), full_width = F, font_size = 13) %>% 
  scroll_box(width = "100%", height = "400px")
Year.Reported.to.CDP Account.Number Organization City Country CDP.Region First.Time.Discloser Population City.Location Sustainability.Targets.Master.Planning Risk.Assessment.Actions Nb.Hazards.Type Hazards.Exposure.Level Adaptation.Challenges.Health Adaptation.Challenges.Economic Adaptation.Challenges.Environment Adaptation.Challenges.Infrastructure Adaptation.Challenges.Social Adaptation.Challenges.Governance Adaptation.Challenges.Education Adaptation.Challenges.Level Risk.Health.System Nb.Adaptation.Actions Adaptation.Plan City.Wide.Emissions.Inventory GHG.Emissions.Primary.protocol GHG.Emissions.Evolution GHG.Emissions.Consumption GHG.Emissions.External.Verification GHG.Emissions.Reductions.Targets Emissions.Reductions.Mitigation.Planning Opportunities.Collaboration Renewable.Energy.Target Electricity.Source.Biomass Electricity.Source.Coal Electricity.Source.Gas Electricity.Source.Geothermal Electricity.Source.Hydro Electricity.Source.Nuclear Electricity.Source.Oil Electricity.Source.Other Electricity.Source.Solar Electricity.Source.Wind Electricity.Source.Renewable Energy.Efficnecy.Target Transport.Mode.Passenger.Public Transport.Mode.Passenger.Cycling Transport.Mode.Passenger.Other Transport.Mode.Passenger.Private.motorized Transport.Mode.Passenger.Walking Low.Zero.Emission.Zone Food.Consumption.Policies Potable.Water.Supply.Percent Water.Resource.Management.strategy lat long Country.Code.3
2020 49335 Metropolitan Government of Nashville and Davidson County Nashville United States of America North America No 692587 POINT (-86.7816 36.1627) Yes Yes 3 41 0 1 0 0 1 0 0 2 Yes 6 In progress Yes GPC Decreased Not intending to undertake Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes 0.0000 24.0000 20.000000 0.00 9.0000 37.0000 0.0000 7.0000 1.5000 1.5000 12.0000 Yes 2.1000000 0.2000000 6.7000000 89.0000000 2.000000 No Yes 100.0000 Not intending to undertake 36.162700 -86.781600 USA
2020 60278 Prefeitura de Fernandópolis Fernandópolis Brazil Latin America No 68823 POINT (-50.2475 -20.2858) Intending to incorporate in the next 2 years Intending to undertake in the next 2 years 2 12 NA NA NA NA NA NA NA NA No 1 Do not know Yes Regional or country specific methodology Decreased Do not know Do not know No target NA Yes In progress 0.0000 0.0000 0.000000 0.00 98.0000 0.0000 0.0000 0.0000 2.0000 0.0000 100.0000 In progress NA NA NA NA NA Do not know Yes 100.0000 In progress -20.285800 -50.247500 BRA
2020 57509 Prefeitura Niterói Niterói Brazil Latin America No 513584 POINT (-43.1184 -22.8928) Yes Yes 9 121 NA NA NA NA NA NA NA NA Yes 10 Yes Yes GPC This is our first year of calculation Not intending to undertake Yes No target In progress Yes Do not know 0.0000 NA 0.000000 0.00 100.0000 0.0000 0.0000 0.0000 0.0000 0.0000 100.0000 Intending to undertake in the next 2 years 41.0000000 4.0000000 0.0000000 26.0000000 29.000000 No Yes 100.0000 Yes -22.892800 -43.118400 BRA
2020 60114 City of Gdynia Gdynia Poland Europe No 246348 POINT (18.5305 54.5189) Yes Yes 5 NA NA NA NA NA NA NA NA NA NA 1 Yes Intending to undertake in the next 2 years NA NA NA NA Base year emissions (absolute) target Yes NA Yes NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 54.518900 18.530500 POL
2020 32550 City of Denver Denver United States of America North America No 716492 POINT (-104.985 39.7376) Yes Yes 4 65 NA NA NA NA NA NA NA NA Yes 11 Yes Yes GPC Decreased Yes In progress Base year emissions (absolute) target Yes Yes Yes 0.0000 39.0000 33.000000 0.00 1.0000 0.0000 0.0000 0.0000 3.0000 24.0000 28.0000 In progress NA NA NA NA NA No Yes 100.0000 Not intending to undertake 39.737600 -104.985000 USA
2020 54519 City of Lund Lund Sweden Europe Yes 124935 Yes Yes 5 74 NA NA NA NA NA NA NA NA Yes 4 Yes Yes City specific methodology Decreased Intending to undertake in the next 2 years Yes Base year emissions (absolute) target Yes Yes Yes 0.0000 0.0000 0.000000 0.00 40.0000 39.0000 0.0000 10.0000 0.0000 11.0000 51.0000 Yes 23.6000000 27.1000000 0.9000000 34.2000000 14.200000 Yes Yes 100.0000 Yes 55.702930 13.192945 SWE
2020 35897 Municipality of Campinas Campinas Brazil Latin America No 1204073 POINT (-46.9372 -22.744) Yes Yes 7 123 NA NA NA NA NA NA NA NA Yes 7 In progress Yes GPC This is our first year of calculation Not intending to undertake Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes In progress 8.3000 2.4000 9.600000 0.00 63.5000 2.6000 1.3000 2.3000 1.1000 8.9000 73.5000 Do not know 14.2000000 2.2000000 15.1000000 43.4000000 25.100000 Yes Yes 99.8100 Yes -22.744000 -46.937200 BRA
2020 68383 Prefeitura de Itatiba Itatiba Brazil Latin America No 115051 POINT (-23 46.5) Yes In progress 1 12 NA NA NA NA NA NA NA NA Yes 2 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target In progress In progress In progress 0.0000 0.0000 0.000000 0.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 Intending to undertake in the next 2 years 0.0000000 0.0000000 0.0000000 NA 0.000000 Do not know Do not know 99.0000 Yes -12.250000 -38.970000 BRA
2020 59563 City of Takoma Park, MD Takoma Park United States of America North America No 17765 POINT (-77.0075 38.9779) Yes Yes 8 80 NA NA NA NA NA NA NA NA Yes 4 Yes Yes ICLEI Decreased Not intending to undertake Do not know Fixed level target Yes Yes Yes 0.3000 29.8000 28.700000 0.00 1.4000 35.3000 0.3000 0.8000 0.3000 3.1000 4.8000 Not intending to undertake NA NA NA NA NA No No 100.0000 Not intending to undertake 38.977900 -77.007500 USA
2020 31165 Stadt Heidelberg Heidelberg Germany Europe No 148365 POINT (8.67243 49.3988) Yes Yes 3 38 0 0 0 0 0 2 0 2 No 2 Yes Yes GPC Stayed the same Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 7.4000 28.3000 15.100000 0.00 3.3000 12.4000 0.8000 4.3000 7.5000 20.9000 31.7000 Yes 13.0000000 29.0000000 NA 29.0000000 29.000000 Yes Yes 99.0000 Yes 49.398800 8.672430 DEU
2020 31165 Stadt Heidelberg Heidelberg Germany Europe No 148365 POINT (8.67243 49.3988) Yes Yes 3 38 0 0 0 0 0 2 0 2 No 2 Yes Yes GPC Stayed the same Not intending to undertake Not intending to undertake Baseline scenario (business as usual) target Yes Yes Yes 7.4000 28.3000 15.100000 0.00 3.3000 12.4000 0.8000 4.3000 7.5000 20.9000 31.7000 Yes 13.0000000 29.0000000 NA 29.0000000 29.000000 Yes Yes 99.0000 Yes 49.398800 8.672430 DEU
2020 49347 City of Omaha Omaha United States of America North America No 468267 Yes Yes 10 85 NA NA NA NA NA NA NA NA Yes 1 Not intending to undertake Yes NA Do not know Not intending to undertake Not intending to undertake Fixed level target Not intending to undertake Yes Yes 0.0000 65.9600 3.120000 0.00 3.4700 27.4200 0.0300 0.0000 0.0000 0.0000 3.4700 NA NA NA NA NA NA No Do not know NA Yes 40.768200 -74.234800 USA
2020 49347 City of Omaha Omaha United States of America North America No 468267 Yes Yes 10 85 NA NA NA NA NA NA NA NA Yes 1 Not intending to undertake Yes NA Do not know Not intending to undertake Not intending to undertake No target Not intending to undertake Yes Yes 0.0000 65.9600 3.120000 0.00 3.4700 27.4200 0.0300 0.0000 0.0000 0.0000 3.4700 NA NA NA NA NA NA No Do not know NA Yes 40.768200 -74.234800 USA
2020 848408 Municipio de Cajamarca Colombia Latin America Yes 17309 Yes Yes 1 16 0 1 0 0 0 0 0 1 Do not know 1 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years Yes Not intending to undertake NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Do not know No 47.0000 Yes -18.936936 -65.376422 COL
2020 60271 Prefeitura de Bertioga Bertioga Brazil Latin America No 64723 POINT (-46.0599 -23.8081) Yes Intending to undertake in the next 2 years 3 17 0 0 1 0 0 0 0 1 No 3 Intending to undertake in the next 2 years Not intending to undertake NA NA NA NA No target Intending to undertake in the next 2 years Intending to undertake in the next 2 years Intending to undertake in the next 2 years 0.0000 0.0000 0.000000 0.00 75.0000 4.0000 19.0000 0.0000 0.0000 2.0000 77.0000 Intending to undertake in the next 2 years NA NA NA NA NA Do not know Do not know 98.0000 In progress -23.808100 -46.059900 BRA
2020 54386 Tainan City Government Tainan Taiwan, Greater China East Asia No 1880906 POINT (120.227 22.9999) Yes Yes 3 70 0 0 1 0 0 0 0 1 Yes 4 Yes Yes GPC Decreased Not intending to undertake Yes Base year emissions (absolute) target Yes Yes Yes NA 4.4000 38.600000 NA 1.5000 13.5000 36.9000 NA 5.1000 NA NA NA NA NA NA NA NA No Yes 100.0000 Yes 22.999900 120.227000 TWN
2020 840018 Municipalidad Distrital de Ate Peru Latin America No 647000 In progress Yes 2 18 1 2 0 1 0 0 0 4 Yes 3 Intending to undertake in the next 2 years In progress NA NA NA NA No target In progress Yes Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA In progress 56.0000000 NA 39.0000000 NA NA No Do not know 78.0000 Intending to undertake in next 2 years -12.075124 -76.980395 PER
2020 845302 Paraíso Costa Rica Latin America Yes 58030 Not intending to incorporate Not intending to undertake 1 16 NA NA NA NA NA NA NA NA Do not know 1 Not intending to undertake Not intending to undertake NA NA NA NA No target Not intending to undertake Not intending to undertake Not intending to undertake NA NA NA NA 1.0000 NA NA NA NA NA NA Do not know NA NA NA NA NA Do not know Do not know 90.0000 Yes 9.976400 -84.833900 CRI
2020 59572 District of Saanich, BC Saanich Canada North America No 114148 POINT (123.378 48.4594) Yes Yes 11 40 NA NA NA NA NA NA NA NA Yes 4 Yes Yes GPC Decreased Yes Yes Base year emissions (absolute) target Yes Yes Yes NA 0.0000 1.760000 NA 95.5700 NA NA 2.6700 NA NA NA Yes 10.0000000 5.0000000 NA 77.0000000 8.000000 No Yes 100.0000 Yes 48.514200 -123.383900 CAN
2020 59572 District of Saanich, BC Saanich Canada North America No 114148 POINT (123.378 48.4594) Yes Yes 11 40 NA NA NA NA NA NA NA NA Yes 4 Yes Yes GPC Decreased Yes Yes Fixed level target Yes Yes Yes NA 0.0000 1.760000 NA 95.5700 NA NA 2.6700 NA NA NA Yes 10.0000000 5.0000000 NA 77.0000000 8.000000 No Yes 100.0000 Yes 48.514200 -123.383900 CAN
2020 35859 City of Cleveland Cleveland United States of America North America No 383793 POINT (-81.6944 41.4993) Yes Yes 3 56 NA NA NA NA NA NA NA NA Yes 3 Yes Yes GPC Increased Not intending to undertake Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes 0.3800 34.8500 25.340000 0.00 5.7400 30.4700 0.0300 0.8900 0.0200 2.2800 8.0400 Yes 10.3000000 1.1000000 4.0000000 78.8000000 5.800000 No Yes 100.0000 Yes 41.499300 -81.694400 USA
2020 50354 Alcaldía de Tegucigalpa Tegucigalpa Honduras Latin America No 1225043 POINT (-87.2044 14.1051) Intending to incorporate in the next 2 years Yes 4 65 NA NA NA NA NA NA NA NA NA 1 Yes Yes GPC Do not know NA Do not know No target NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No No 71.0000 Intending to undertake in next 2 years 14.105100 -87.204400 HND
2020 50674 Município de Viseu Viseu Portugal Europe No 97249 POINT (-7.91247 40.6566) Yes Yes 5 58 0 0 0 0 0 1 0 1 Yes 5 Yes Yes 2006 IPCC Guidelines This is our first year of calculation Yes Yes Base year emissions (absolute) target Yes Yes Yes 6.0000 0.0000 0.000000 0.40 14.3000 0.0000 0.0000 0.0000 1.9000 22.9000 39.5000 Yes 0.0000000 0.0000000 0.0000000 NA NA No Yes 98.0000 In progress 40.656600 -7.912470 PRT
2020 31167 City of Lagos Lagos Nigeria Africa No 21000000 POINT (3.3792 6.52437) Yes Yes 3 50 0 4 0 1 0 1 0 6 Yes 4 Yes Yes GPC Decreased Intending to undertake in the next 2 years Yes No target Yes Yes In progress NA NA 99.000000 NA NA NA NA NA 1.0000 NA NA In progress 47.4100000 1.0000000 0.3400000 11.0000000 40.000000 No No 40.0000 Intending to undertake in next 2 years 6.524370 3.379200 NGA
2020 3422 Greater London Authority London United Kingdom of Great Britain and Northern Ireland Europe No 8908081 POINT (-0.07868 51.5048) Yes Yes 5 73 0 1 0 0 0 0 0 1 No 9 Yes Yes City specific methodology Decreased Yes In progress Base year emissions (absolute) target Yes Yes Yes NA 5.1000 39.500000 0.00 1.7000 19.5000 2.9000 10.4000 3.9000 17.1000 22.7000 In progress 35.2000000 2.4000000 1.4000000 36.5000000 24.400000 Yes Yes 100.0000 Intending to undertake in next 2 years 51.504800 -0.078680 GBR
2020 60117 Winchester City Council Winchester United Kingdom of Great Britain and Northern Ireland Europe Yes 124100 Yes NA NA NA NA NA NA NA NA NA NA NA NA 1 NA NA NA NA NA NA Base year emissions (absolute) target NA Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA -4.441900 15.266300 GBR
2020 49342 City of Rochester Rochester United States of America North America No 210563 POINT (-77.6109 43.161) Yes Yes 4 73 0 1 2 0 0 0 0 3 Do not know 4 Yes Yes ICLEI Do not know Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Intending to undertake in the next 2 years NA 1.0000 8.000000 NA 40.0000 41.0000 2.0000 3.0000 NA 7.0000 NA Intending to undertake in the next 2 years 30.0000000 10.0000000 10.0000000 40.0000000 10.000000 No No 100.0000 Yes 43.161000 -77.610900 USA
2020 31108 City of Houston Houston United States of America North America No 2343365 POINT (-95.3694 29.7602) Yes Yes 7 121 0 1 1 2 0 3 0 7 Yes 13 Yes Yes GPC Decreased Intending to undertake in the next 2 years Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes 0.2400 22.6200 48.550000 0.00 0.2200 10.0000 0.0300 0.5500 0.7700 17.0200 18.0100 Yes 3.8000000 NA 6.6000000 78.1000000 1.500000 No No 100.0000 Yes 29.760200 -95.369400 USA
2020 50154 City of Turku Turku Finland Europe No 193000 POINT (22.2666 60.4518) Yes Yes 5 91 1 0 1 1 0 0 0 3 Yes 8 Yes Yes 2006 IPCC Guidelines Decreased Yes Yes Base year emissions (absolute) target Yes Yes Yes 12.6000 21.0000 3.800000 0.00 28.1000 16.7000 0.2000 14.9000 0.0000 2.7000 30.8000 Yes 10.0000000 10.0000000 2.0000000 49.0000000 29.000000 No Yes 100.0000 Yes 60.451800 22.266600 FIN
2020 58310 City of Roanoke Roanoke United States of America North America No 99920 POINT (-79.9414 37.271) Yes Intending to undertake in the next 2 years 3 49 NA NA NA NA NA NA NA NA NA 1 Do not know Yes GPC Stayed the same Not intending to undertake Not intending to undertake NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Yes NA NA NA NA NA NA NA NA NA 37.271000 -79.941400 USA
2020 845309 Puente Piedra Peru Latin America Yes NA NA Yes NA NA NA NA NA NA NA NA NA NA NA 1 In progress Intending to undertake in the next 2 years NA NA NA NA NA In progress NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA -11.876827 -77.074482 PER
2020 50220 Métropole Nice Côte d’Azur Nice France Europe No 540000 POINT (7.26195 43.7102) Yes Yes 1 16 NA NA NA NA NA NA NA NA Yes 9 Yes Yes GPC Increased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 1.6000 1.4000 6.600000 NA 12.0000 72.3000 0.6000 NA 1.6000 3.9000 NA Yes 10.0000000 1.0000000 NA 46.0000000 38.000000 No Yes 100.0000 Yes 43.710200 7.261950 FRA
2020 59165 Gladsaxe Kommune Gladsaxe Denmark Europe No 69262 POINT (12.4887 55.7335) Yes Yes 1 12 NA NA NA NA NA NA NA NA No 4 Yes Yes GPC Decreased Intending to undertake in the next 2 years Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 18.0000 11.0000 7.000000 0.00 7.0000 4.0000 1.0000 NA 6.0000 46.0000 59.0000 In progress 18.0000000 9.0000000 3.0000000 66.0000000 4.000000 No Yes 100.0000 Yes 55.733500 12.488700 DNK
2020 54667 Prefeitura Municipal de Contagem Contagem Brazil Latin America No 659070 Intending to incorporate in the next 2 years Intending to undertake in the next 2 years 2 8 0 0 0 1 0 0 0 1 Do not know 3 Intending to undertake in the next 2 years In progress GPC NA NA NA No target Intending to undertake in the next 2 years Yes Do not know NA NA NA NA NA NA NA NA NA NA NA Intending to undertake in the next 2 years NA NA NA NA NA No Do not know NA In progress -21.538796 -42.180978 BRA
2020 16581 City of Seattle Seattle United States of America North America No 704352 POINT (-122.332 47.6062) Yes Yes 3 60 0 1 0 0 1 0 0 2 Yes 10 Yes Yes ICLEI Decreased Intending to undertake in the next 2 years Yes Base year emissions (absolute) target Yes Yes Yes 1.0000 0.0000 0.000000 0.00 86.0000 5.0000 0.0000 1.0000 0.0000 7.0000 93.0000 Yes 5.2000000 0.9000000 1.9000000 80.6000000 11.300000 No Yes 100.0000 Yes 47.606200 -122.332000 USA
2020 60400 Municipalidad de Temuco Chile Latin America No 282415 Yes Intending to undertake in the next 2 years 2 33 NA NA NA NA NA NA NA NA No 1 Yes Intending to undertake in the next 2 years NA NA NA NA Fixed level target In progress Intending to undertake in the next 2 years Not intending to undertake 53.7000 3.9000 12.100000 NA NA NA 4.5000 25.8000 NA NA NA Do not know NA NA NA NA NA No No 100.0000 Intending to undertake in next 2 years -38.739793 -72.590929 CHL
2020 31051 Coventry City Council Coventry United Kingdom of Great Britain and Northern Ireland Europe No 366785 POINT (-1.51217 52.4066) Yes Yes 5 62 0 0 1 0 1 0 0 2 Yes 4 Yes Yes Regional or country specific methodology Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Intending to undertake in the next 2 years 8.6000 6.0000 38.000000 8.60 8.6000 11.0000 0.0000 2.0000 8.6000 8.6000 34.4000 Intending to undertake in the next 2 years 17.0000000 3.0000000 0.0000000 64.0000000 16.000000 No No NA Not intending to undertake 52.406600 -1.512170 GBR
2020 35883 City of San José San José, CA United States of America North America No 1046079 POINT (-121.886 37.3382) Yes Yes 6 103 0 1 0 0 1 0 0 2 Yes 14 Yes Yes GPC Decreased Intending to undertake in the next 2 years Not intending to undertake Fixed level target Yes Yes Yes 5.0000 0.0000 0.000000 2.00 36.0000 0.0000 0.0000 17.0000 30.0000 10.0000 78.0000 Yes 3.9000000 0.6000000 5.7000000 87.8000000 2.000000 No Yes 100.0000 Yes 37.338200 -121.886000 USA
2020 44299 Dangjin City Dangjin-si Republic of Korea East Asia Yes 166057 Yes Yes NA NA NA NA NA NA NA NA NA NA NA 1 NA Yes NA Increased Do not know Do not know No target Do not know Yes Yes NA 80.0000 15.000000 NA NA NA NA 5.0000 NA NA NA Do not know NA NA NA NA NA No Do not know 100.0000 Intending to undertake in next 2 years 36.894400 126.629700 KOR
2020 62855 Egedal Municipality Egedal Denmark Europe No 43354 POINT (12.2387 55.795) Yes Yes 4 26 NA NA NA NA NA NA NA NA No 3 Yes Yes GPC Stayed the same Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 13.0000 9.0000 7.000000 0.00 11.0000 5.0000 1.0000 5.0000 4.0000 45.0000 60.0000 Yes 8.0000000 11.0000000 4.0000000 64.0000000 14.000000 No Yes 100.0000 Yes 55.795000 12.238700 DNK
2020 43911 City of Ottawa Ottawa Canada North America No 991429 POINT (-75.6972 45.4215) Yes In progress 4 90 NA NA NA NA NA NA NA NA NA 1 Yes Yes GPC Decreased NA Yes Base year emissions (absolute) target Yes NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 45.421500 -75.697200 CAN
2020 60656 City of Piedmont, CA Piedmont United States of America North America No 11378 POINT (-122.232 37.8244) Yes Yes 3 28 NA NA NA NA NA NA NA NA NA 2 Yes Yes GPC Increased Yes Not intending to undertake Base year emissions (absolute) target Yes Intending to undertake in the next 2 years Yes 5.0000 3.0000 42.000000 5.00 8.0000 21.0000 0.0000 NA 9.0000 7.0000 29.0000 NA NA NA NA NA NA No No NA Yes 37.824400 -122.232000 USA
2020 60656 City of Piedmont, CA Piedmont United States of America North America No 11378 POINT (-122.232 37.8244) Yes Yes 3 28 NA NA NA NA NA NA NA NA NA 2 Yes Yes GPC Increased Yes Not intending to undertake Baseline scenario (business as usual) target Yes Intending to undertake in the next 2 years Yes 5.0000 3.0000 42.000000 5.00 8.0000 21.0000 0.0000 NA 9.0000 7.0000 29.0000 NA NA NA NA NA NA No No NA Yes 37.824400 -122.232000 USA
2020 54364 City of Kuala Lumpur Kuala Lumpur Malaysia Southeast Asia and Oceania No 1790000 POINT (101.687 3.139) Yes In progress 3 24 NA NA NA NA NA NA NA NA Yes 3 Yes In progress GPC NA NA NA Base year emissions (absolute) target Yes Yes Intending to undertake in the next 2 years 0.0000 100.0000 0.000000 0.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 Intending to undertake in the next 2 years 17.0000000 2.0000000 11.0000000 21.0000000 5.000000 No No 100.0000 Yes 3.139000 101.687000 MYS
2020 59558 City of Holland, MI United States of America North America Yes 33216 Yes Yes 1 20 NA NA NA NA NA NA NA NA Yes 1 Do not know Yes ICLEI Decreased Not intending to undertake Not intending to undertake Base year intensity target Yes Yes Yes 0.0000 21.2000 61.070000 0.00 0.0000 0.0000 0.0000 10.0900 0.0000 7.6400 7.6400 Yes 1.3000000 1.5000000 13.6000000 75.3000000 7.300000 No No 100.0000 Intending to undertake in next 2 years 40.768200 -74.234800 USA
2020 60369 Alcaldía Municipal de Armenia Colombia Latin America No 301226 Yes Yes 4 44 NA NA NA NA NA NA NA NA NA 4 Not intending to undertake Yes NA This is our first year of calculation Intending to undertake in the next 2 years Not intending to undertake No target Intending to undertake in the next 2 years Yes Do not know 0.0000 0.0000 0.000000 0.00 100.0000 0.0000 0.0000 0.0000 0.0000 0.0000 100.0000 NA NA NA NA NA NA No Yes 94.4000 Intending to undertake in next 2 years 13.745591 -89.501154 COL
2020 31186 Changwon City Changwon Republic of Korea East Asia No 1072657 POINT (126.949 35.1542) Yes Yes 6 127 NA NA NA NA NA NA NA NA No 4 Yes Yes NA Increased Yes Do not know Baseline scenario (business as usual) target Yes Do not know Intending to undertake in the next 2 years 0.4800 78.9000 0.500000 2.18 15.7000 0.0000 0.0000 0.0000 2.2400 0.0000 20.1200 In progress 17.3000000 1.6000000 12.4000000 40.2000000 28.500000 No No 98.2000 Intending to undertake in next 2 years 35.154200 126.949000 KOR
2020 74453 City of Highland Park, IL United States of America North America No 29767 In progress Yes 17 180 NA NA NA NA NA NA NA NA NA 2 Intending to undertake in the next 2 years Yes GPC Stayed the same Not intending to undertake Not intending to undertake Fixed level target Intending to undertake in the next 2 years Yes Intending to undertake in the next 2 years 0.0000 29.0000 31.000000 0.00 1.0000 35.0000 0.0000 1.0000 0.0000 3.0000 4.0000 NA NA NA NA NA NA No No 100.0000 Yes 37.577000 -77.386500 USA
2020 848122 Alajuela Costa Rica Latin America Yes 297879 Yes Yes 9 115 0 2 0 0 0 0 0 2 Yes 1 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years Yes Do not know 1.0000 2.0000 2.000000 0.00 60.0000 0.0000 33.0000 0.0000 2.0000 0.0000 62.0000 Do not know 0.0000000 0.0000000 0.0000000 0.0000000 0.000000 No No 98.0000 Intending to undertake in next 2 years 10.027800 -84.204100 CRI
2020 43970 Alcaldía Distrital de Barranquilla Barranquilla Colombia Latin America No 1236489 POINT (-74.7782 10.9815) Yes Yes 3 0 NA NA NA NA NA NA NA NA No 2 Do not know Intending to undertake in the next 2 years NA NA NA NA No target Do not know Yes Do not know NA NA NA NA NA NA NA NA NA NA NA Do not know NA NA NA NA NA No Do not know 97.0000 Intending to undertake in next 2 years 10.981500 -74.778200 COL
2020 847922 Junta Municipal de Medio Ambiente Lagunas (JIMAL) Mexico Latin America Yes 132735 Intending to incorporate in the next 2 years Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA Do not know 1 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years Intending to undertake in the next 2 years Do not know NA NA NA NA NA NA NA NA NA NA NA Do not know NA NA NA NA NA No No 96.0000 Intending to undertake in next 2 years 37.985009 -103.543832 MEX
2020 55799 Arlington, VA Arlington United States of America North America No 226400 POINT (-76.0026 37.2265) Yes Yes 7 91 NA NA NA NA NA NA NA NA No 6 In progress Yes GPC Decreased Not intending to undertake Intending to undertake in the next 2 years Fixed level target Yes Yes Yes 1.0000 26.0000 24.000000 0.00 0.0000 47.0000 0.0000 0.0000 1.0000 1.0000 2.0000 In progress 21.0000000 5.0000000 11.0000000 60.0000000 3.000000 No Yes 100.0000 Yes 37.226500 -76.002600 USA
2020 49339 City and County of Honolulu Honolulu United States of America North America No 974563 POINT (157.59 21.28) Yes Yes 4 100 NA NA NA NA NA NA NA NA Yes 40 In progress Yes GPC Increased Intending to undertake in the next 2 years Yes Fixed level target Yes Yes Yes 0.0000 18.6000 0.000000 0.00 0.0000 0.0000 64.0000 5.9000 8.9000 2.6000 11.5000 Intending to undertake in the next 2 years 11.4000000 NA NA 77.0000000 11.600000 No Yes 99.0000 Yes 38.631700 -90.479000 USA
2020 73765 Tuguegarao City Philippines Southeast Asia and Oceania Yes 165700 Yes Yes 1 25 NA NA NA NA NA NA NA NA Yes 1 Yes Yes City specific methodology NA NA NA No target Do not know Yes Do not know NA NA NA NA 100.0000 NA NA NA NA NA NA Do not know 0.0000000 NA 0.0000000 NA NA Yes NA 98.0000 NA 17.616700 121.716700 PHL
2020 60274 Prefeitura de Cruzeiro do Sul Cruzeiro do Sul Brazil Latin America No 88376 POINT (-72.6761 -7.62799) In progress Yes 1 25 NA NA NA NA NA NA NA NA NA 1 Do not know NA NA NA NA NA NA Do not know Do not know Do not know NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No NA 90.0000 Yes -7.627990 -72.676100 BRA
2020 2185 Bristol City Council Bristol United Kingdom of Great Britain and Northern Ireland Europe No 463400 Yes Yes 5 NA 0 1 0 0 0 0 0 1 Yes 3 Yes Yes GPC Decreased Yes Do not know Base year emissions (absolute) target Yes Yes Yes 10.0000 3.5000 30.300000 0.00 2.6000 13.5000 0.2000 14.3000 0.0000 25.6000 28.2000 Yes 26.0000000 16.0000000 2.0000000 34.0000000 21.000000 No Yes 100.0000 Yes 51.450000 -2.583300 GBR
2020 2185 Bristol City Council Bristol United Kingdom of Great Britain and Northern Ireland Europe No 463400 Yes Yes 5 NA 0 1 0 0 0 0 0 1 Yes 3 Yes Yes GPC Decreased Yes Do not know Fixed level target Yes Yes Yes 10.0000 3.5000 30.300000 0.00 2.6000 13.5000 0.2000 14.3000 0.0000 25.6000 28.2000 Yes 26.0000000 16.0000000 2.0000000 34.0000000 21.000000 No Yes 100.0000 Yes 51.450000 -2.583300 GBR
2020 31117 City of Toronto Toronto Canada North America No 2919971 POINT (-79.3832 43.6532) Yes Yes 11 191 0 1 1 1 0 0 0 3 Yes 16 Yes Yes GPC Increased In progress Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes 1.0000 NA 29.000000 NA 23.0000 34.0000 NA NA 1.0000 12.0000 NA Yes 28.0000000 6.5000000 2.0000000 57.0000000 6.500000 No Yes 100.0000 Yes 43.653200 -79.383200 CAN
2020 54603 Alcaldia de Pasto Pasto Colombia Latin America No 455678 Yes Yes 2 8 0 0 1 0 0 0 0 1 Do not know 1 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target Not intending to undertake Yes Intending to undertake in the next 2 years NA 0.0000 0.000000 0.00 0.0000 0.0000 0.0000 NA 0.0000 0.0000 0.0000 Do not know NA NA NA NA NA No Yes 80.0000 Yes 7.835300 -72.473600 COL
2020 43930 The Hague The Hague Netherlands Europe No 546847 POINT (4.3007 52.0705) Yes Yes 3 31 NA NA NA NA NA NA NA NA No 7 Yes Yes GPC Decreased Not intending to undertake Yes Base year emissions (absolute) target Yes Yes Yes 0.4300 35.0000 63.000000 NA NA 0.1300 NA NA 0.9600 0.4800 NA Yes NA NA NA NA NA Yes Yes 99.9900 Yes 52.070500 4.300700 NLD
2020 59653 City of Manhattan Beach, CA Manhattan Beach United States of America North America No 35532 POINT (-118.405 33.8889) Yes Yes 3 19 NA NA NA NA NA NA NA NA Do not know 3 In progress Yes GPC Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 0.0000 0.0000 0.000000 0.00 0.0000 0.0000 0.0000 0.0000 100.0000 0.0000 100.0000 In progress NA NA NA NA NA No Yes 100.0000 Yes 33.888900 -118.405000 USA
2020 839650 Ayuntamiento de Uriangato Mexico Latin America No 1241 Yes Intending to undertake in the next 2 years 1 6 NA NA NA NA NA NA NA NA NA 1 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA Base year intensity target Intending to undertake in the next 2 years Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No No 90.0000 Intending to undertake in next 2 years 20.133300 -101.166700 MEX
2020 13113 Newcastle City Council Newcastle upon Tyne United Kingdom of Great Britain and Northern Ireland Europe Yes 300196 Yes Yes 4 31 0 1 0 0 0 0 0 1 Yes 5 Yes Yes GPC This is our first year of calculation Intending to undertake in the next 2 years Intending to undertake in the next 2 years Fixed level target Yes Yes Yes 9.5900 1.9900 39.390000 0.00 1.4800 15.5200 0.3000 8.2200 1.5400 21.9700 24.9900 Not intending to undertake 26.0000000 2.9000000 2.0000000 55.2000000 13.900000 No Yes 100.0000 Yes 55.007700 -1.657800 GBR
2020 36036 City of Ibadan Ibadan Nigeria Africa No 6591589 POINT (3.94704 7.37753) Yes Yes 1 12 0 1 0 0 0 2 0 3 Yes 1 Yes Intending to undertake in the next 2 years NA NA NA NA Base year emissions (absolute) target Yes Yes In progress 0.0000 0.0000 15.000000 5.00 40.0000 0.0000 35.0000 NA 5.0000 0.0000 50.0000 NA NA NA NA NA NA No NA 50.0000 NA 7.377530 3.947040 NGA
2020 31163 Istanbul Metropolitan Municipality Istanbul Turkey Europe No 15519267 POINT (28.9784 41.0082) Yes Yes 6 20 0 0 0 2 0 1 0 3 Do not know 2 In progress Yes GPC Decreased Not intending to undertake Intending to undertake in the next 2 years Baseline scenario (business as usual) target Yes Intending to undertake in the next 2 years Yes 0.7000 28.4000 37.800000 1.30 25.8000 0.0000 1.6000 0.0000 0.0000 4.4000 31.5000 NA NA NA NA NA NA No No 100.0000 Yes 41.008200 28.978400 TUR
2020 59180 Middelfart Kommune Middelfart Denmark Europe No 38553 POINT (9.87264 55.471) Yes Yes 4 37 NA NA NA NA NA NA NA NA NA 4 Yes Yes Regional or country specific methodology Decreased NA Do not know Fixed level target Yes Yes Yes NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No No 100.0000 Yes 55.471000 9.872640 DNK
2020 59180 Middelfart Kommune Middelfart Denmark Europe No 38553 POINT (9.87264 55.471) Yes Yes 4 37 NA NA NA NA NA NA NA NA NA 4 Yes Yes Regional or country specific methodology Decreased NA Do not know Base year emissions (absolute) target Yes Yes Yes NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No No 100.0000 Yes 55.471000 9.872640 DNK
2020 50385 Prefeitura de Campo Grande Campo Grande Brazil Latin America No 786797 POINT (-37.7142 -7.10801) In progress In progress 5 69 NA NA NA NA NA NA NA NA NA 6 Do not know NA NA NA NA NA NA Do not know Yes Do not know NA NA NA NA NA NA NA NA NA NA NA In progress NA NA NA NA NA No Do not know 99.9000 NA -7.108010 -37.714200 BRA
2020 60546 Nanjing Municipal People’s Government Nanjing China East Asia No 8500000 POINT (118.797 32.0603) Yes Not intending to undertake 2 2 NA NA NA NA NA NA NA NA NA 12 NA In progress 2006 IPCC Guidelines NA NA NA Base year emissions (absolute) target Yes Do not know In progress NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Yes Do not know NA Yes 32.060300 118.797000 CHN
2020 60546 Nanjing Municipal People’s Government Nanjing China East Asia No 8500000 POINT (118.797 32.0603) Yes Not intending to undertake 2 2 NA NA NA NA NA NA NA NA NA 12 NA In progress 2006 IPCC Guidelines NA NA NA Base year intensity target Yes Do not know In progress NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Yes Do not know NA Yes 32.060300 118.797000 CHN
2020 50680 Município de Cascais Cascais Portugal Europe No 212474 POINT (-9.42229 38.697) Yes Yes 5 93 NA NA NA NA NA NA NA NA Yes 5 Yes Yes NA Increased Intending to undertake in the next 2 years Yes No target Yes Yes Yes 2.0000 7.0000 1.000000 0.00 13.0000 2.0000 10.0000 0.0000 6.0000 52.0000 71.0000 Yes NA NA NA NA NA No No 100.0000 Yes 38.697000 -9.422290 PRT
2020 31166 Jakarta City Government Jakarta Indonesia Southeast Asia and Oceania No 10557810 POINT (106.865 -6.1751) Yes Yes 2 28 NA NA NA NA NA NA NA NA Yes 1 Intending to undertake in the next 2 years Yes 2006 IPCC Guidelines Increased Intending to undertake in the next 2 years Yes Baseline scenario (business as usual) target Yes Yes Yes 0.0000 0.0000 99.940000 0.00 0.0000 0.0000 0.0600 0.0000 0.0000 0.0000 0.0000 Yes NA NA NA NA NA Yes Do not know 60.0000 In progress -6.175100 106.865000 IDN
2020 50650 City of Gibraltar Gibraltar Gibraltar Europe No 34838 POINT (-5.35359 36.1408) Yes Intending to undertake in the next 2 years 6 61 NA NA NA NA NA NA NA NA Do not know 5 In progress Yes GPC Increased Yes Do not know Fixed level target In progress Yes Yes NA NA NA NA NA NA 99.8000 NA 0.2000 NA NA Yes NA NA NA NA NA No Do not know 100.0000 Intending to undertake in next 2 years 36.132400 -5.378100 GIB
2020 73802 Crespo Argentina Latin America No 21338 Do not know Yes 4 37 NA NA NA NA NA NA NA NA Do not know 5 Yes Yes GPC This is our first year of calculation Not intending to undertake Not intending to undertake Baseline scenario (business as usual) target Yes NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA -32.030900 -60.307200 ARG
2020 848138 Prefeitura de Conde (Paraíba) Brazil Latin America Yes 24610 Intending to incorporate in the next 2 years Intending to undertake in the next 2 years NA NA 0 0 0 0 1 0 0 1 Do not know 1 Do not know Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years Yes Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA Do not know NA NA NA NA NA Do not know Yes 70.0000 Intending to undertake in next 2 years -23.443900 -46.917800 BRA
2020 43905 City of San Antonio San Antonio United States of America North America No 1547253 POINT (-98.4936 29.4241) Yes Yes 5 112 0 1 0 1 0 0 0 2 Yes 4 Yes Yes GPC Decreased Intending to undertake in the next 2 years Do not know Base year emissions (absolute) target Yes Yes Yes 0.0000 22.4000 32.900000 0.00 0.0000 29.8000 0.0000 NA 7.4000 7.5000 14.9000 In progress 10.0000000 8.0000000 1.0000000 75.0000000 6.000000 No Yes 100.0000 Yes 29.424100 -98.493600 USA
2020 50368 Municipalidad de Provincial de Arequipa Arequipa Peru Latin America No 1009132 POINT (-75.329 -11.0557) In progress Yes 7 89 NA NA NA NA NA NA NA NA NA 8 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years In progress Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No Do not know 80.0000 Yes -11.055700 -75.329000 PER
2020 63999 City of Miami Beach, FL Miami Beach United States of America North America No 91917 POINT (-80.13 25.7906) Yes Yes 4 63 0 0 0 2 0 0 0 2 Yes 1 Yes Yes GPC Stayed the same Not intending to undertake Do not know No target Yes Yes Intending to undertake in the next 2 years 0.0000 3.6000 69.800000 0.00 0.0000 21.7000 0.5000 4.0000 0.4000 0.0000 0.4000 Intending to undertake in the next 2 years 12.0000000 5.5000000 12.0000000 56.5000000 14.000000 No NA 100.0000 Intending to undertake in next 2 years 25.790600 -80.130000 USA
2020 31177 Salt Lake City Salt Lake City United States of America North America No 200591 POINT (-111.891 40.7608) Yes Yes 2 45 NA NA NA NA NA NA NA NA Yes 3 Yes Yes ICLEI Stayed the same Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 0.3700 58.8900 10.570000 0.39 7.0900 0.0000 0.0000 10.5900 3.5400 8.5600 19.5800 Not intending to undertake NA NA NA NA NA No Yes 100.0000 Yes 40.760800 -111.891000 USA
2020 54697 Prefeitura Municipal de Cerquilho Cerquilho Brazil Latin America No 39617 POINT (-47.7463 -23.167) In progress Do not know 1 9 NA NA NA NA NA NA NA NA NA 1 Do not know Yes NA NA NA NA No target NA Yes Do not know NA NA NA NA 100.0000 NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA -23.167000 -47.746300 BRA
2020 832610 Orange County, NC United States of America North America No 142830 Yes Yes 4 35 NA NA NA NA NA NA NA NA Do not know 3 Yes Yes GPC Decreased Intending to undertake in the next 2 years Not intending to undertake Base year emissions (absolute) target In progress Do not know Yes 0.0000 27.0000 35.000000 0.00 1.0000 35.0000 1.0000 0.0000 1.0000 0.0000 2.0000 In progress NA NA NA NA NA NA NA NA NA 28.934700 -81.288100 USA
2020 59167 Municipalidad de Providencia Providencia Chile Latin America No 142079 POINT (-70.6092 -33.4313) Yes Yes 7 80 0 0 1 2 0 0 0 3 Yes 21 Yes Yes Regional or country specific methodology Increased Intending to undertake in the next 2 years Not intending to undertake Base year intensity target Yes Yes Yes 0.0000 16.0000 18.000000 0.00 39.0000 0.0000 15.0000 0.0000 12.0000 0.0000 51.0000 Yes 32.0000000 48.0000000 1.0000000 34.0000000 48.000000 Yes Yes 100.0000 Yes -33.431300 -70.609200 CHL
2020 59167 Municipalidad de Providencia Providencia Chile Latin America No 142079 POINT (-70.6092 -33.4313) Yes Yes 7 80 0 0 1 2 0 0 0 3 Yes 21 Yes Yes Regional or country specific methodology Increased Intending to undertake in the next 2 years Not intending to undertake No target Yes Yes Yes 0.0000 16.0000 18.000000 0.00 39.0000 0.0000 15.0000 0.0000 12.0000 0.0000 51.0000 Yes 32.0000000 48.0000000 1.0000000 34.0000000 48.000000 Yes Yes 100.0000 Yes -33.431300 -70.609200 CHL
2020 60233 Pärnu City Government Pärnu Estonia Europe No 51504 POINT (24.4966 58.3858) Not intending to incorporate Not intending to undertake 2 NA NA NA NA NA NA NA NA NA NA 1 Not intending to undertake Not intending to undertake NA NA NA NA No target Not intending to undertake Not intending to undertake Yes 0.0000 0.0000 0.000000 0.00 0.0000 0.0000 0.0000 100.0000 0.0000 0.0000 0.0000 Do not know NA NA NA NA NA No No NA Not intending to undertake 58.385800 24.496600 EST
2020 839673 Municipalidad Distrital de Jesús María Peru Latin America No 75359 Yes Yes 2 50 0 0 0 0 0 1 0 1 Yes 7 Yes In progress GPC NA NA NA Base year emissions (absolute) target In progress Yes In progress NA NA NA NA 100.0000 NA NA NA NA NA NA In progress 70.0000000 0.3000000 8.2000000 12.8000000 8.700000 No Yes 100.0000 Yes -3.785283 -80.063983 PER
2020 58595 Municipalidad de Belén Belén Costa Rica Latin America No 24000 POINT (-84.1503 10.0035) Yes Yes 6 80 0 2 0 0 0 0 0 2 Yes 12 In progress Yes Regional or country specific methodology Decreased Intending to undertake in the next 2 years Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes In progress 1.0000 2.0000 3.000000 2.00 76.0000 0.0000 7.0000 0.0000 5.0000 4.0000 87.0000 In progress 22.5000000 5.0000000 16.0000000 79.0000000 30.000000 No No 100.0000 Yes 10.003500 -84.150300 CRI
2020 51079 Guatemala City Guatemala City Guatemala Latin America No 902522 POINT (-90.5069 14.6349) Yes In progress 5 86 0 2 0 0 0 0 0 2 Do not know 5 In progress Yes GPC This is our first year of calculation Not intending to undertake Do not know No target Intending to undertake in the next 2 years Intending to undertake in the next 2 years Not intending to undertake 0.0000 24.2000 0.000000 2.30 56.6000 NA 3.8000 9.3000 1.5000 2.0000 62.4000 Do not know NA NA NA NA NA No NA NA NA 14.634900 -90.506900 GTM
2020 3429 City of Stockholm Stockholm Sweden Europe No 981105 POINT (18.0686 59.3293) Yes Yes 4 86 NA NA NA NA NA NA NA NA Yes 4 Yes Yes GPC Decreased Intending to undertake in the next 2 years Yes Fixed level target Yes Yes Yes 6.0000 3.0000 2.000000 NA 53.0000 21.0000 0.0000 5.0000 NA 10.0000 NA Yes 37.0000000 11.0000000 5.0000000 26.0000000 21.000000 Yes Yes 100.0000 Yes 59.329300 18.068600 SWE
2020 54034 City of Grand Rapids Grand Rapids United States of America North America Yes 201013 Yes Yes NA NA NA NA NA NA NA NA NA NA Yes 6 Intending to undertake in the next 2 years Yes City specific methodology This is our first year of calculation Not intending to undertake Yes No target Intending to undertake in the next 2 years Yes Yes 0.1000 32.1000 33.500000 NA 1.5000 20.9000 0.1000 3.3000 0.1000 8.4000 NA In progress 4.2000000 2.2000000 10.7000000 79.1000000 3.800000 No NA 100.0000 Yes 42.946400 -85.608800 USA
2020 59678 City of Evanston, IL Evanston United States of America North America No 75603 POINT (-87.6898 42.0669) Yes In progress 4 64 NA NA NA NA NA NA NA NA NA 6 Yes Yes GPC Increased Not intending to undertake Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes 0.0000 35.0000 26.000000 0.00 1.0000 35.0000 0.0000 1.0000 0.0000 2.0000 3.0000 NA NA NA NA NA NA No No 100.0000 Intending to undertake in next 2 years 42.066900 -87.689800 USA
2020 73530 Town of Lexington, MA Lexington, MA United States of America North America No 31394 POINT (-71.2269 42.4443) Do not know Yes 4 63 NA NA NA NA NA NA NA NA Yes 1 Yes Yes City specific methodology Decreased Not intending to undertake Yes Base year emissions (absolute) target Yes Yes Yes 0.0000 0.0000 0.000000 0.00 0.0000 0.0000 0.0000 0.0000 0.0000 100.0000 100.0000 Yes 14.0000000 1.0000000 19.0000000 71.0000000 2.000000 No Yes 100.0000 Yes 42.444300 -71.226900 USA
2020 36044 Seferihisar Municipality Seferihisar Turkey Europe No 44526 POINT (26.8344 38.1951) Not intending to incorporate Not intending to undertake 3 43 NA NA NA NA NA NA NA NA No 3 Not intending to undertake Not intending to undertake NA NA NA NA No target NA NA NA 0.0000 NA NA NA NA 0.0000 NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 38.195100 26.834400 TUR
2020 13506 Nottingham City Council Nottingham United Kingdom of Great Britain and Northern Ireland Europe Yes 332900 Yes Yes 5 51 0 0 0 1 0 0 0 1 Yes 9 Yes Yes GPC This is our first year of calculation Not intending to undertake Not intending to undertake Fixed level target Yes Yes Yes 9.6100 5.2600 39.380000 0.00 2.3800 19.4900 0.5000 2.4100 3.8700 17.1000 23.3500 Yes NA NA NA NA NA No Yes 100.0000 Not intending to undertake 52.950000 -1.150000 GBR
2020 13506 Nottingham City Council Nottingham United Kingdom of Great Britain and Northern Ireland Europe Yes 332900 Yes Yes 5 51 0 0 0 1 0 0 0 1 Yes 9 Yes Yes GPC This is our first year of calculation Not intending to undertake Not intending to undertake Base year intensity target Yes Yes Yes 9.6100 5.2600 39.380000 0.00 2.3800 19.4900 0.5000 2.4100 3.8700 17.1000 23.3500 Yes NA NA NA NA NA No Yes 100.0000 Not intending to undertake 52.950000 -1.150000 GBR
2020 36223 Antananarivo Antananarivo Madagascar Africa No 3209933 POINT (47.5079 -18.8792) Yes Yes 4 57 NA NA NA NA NA NA NA NA Yes 4 Yes Not intending to undertake NA NA NA NA Base year emissions (absolute) target Yes Yes In progress 0.0000 NA NA 0.00 20.0000 0.0000 80.0000 NA 0.0000 0.0000 20.0000 Do not know NA NA NA NA NA NA Yes 65.0000 In progress -18.879200 47.507900 MDG
2020 840936 Prefeitura de Guanhães Brazil Latin America No 34319 In progress In progress 2 41 NA NA NA NA NA NA NA NA Yes 4 Do not know Intending to undertake in the next 2 years NA NA NA NA NA In progress Do not know Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA Yes NA NA NA NA NA Do not know Do not know 80.0000 Intending to undertake in next 2 years -18.780000 -42.950000 BRA
2020 1850 Birmingham City Council Birmingham United Kingdom of Great Britain and Northern Ireland Europe No 1141400 Yes In progress 4 64 1 1 1 1 0 0 0 4 Yes 3 Yes Yes GPC Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target In progress Yes Do not know 10.7000 5.0000 39.400000 0.00 1.5000 19.4000 0.0000 2.8000 3.8000 17.4000 22.7000 Do not know 60.0000000 1.0000000 5.0000000 34.0000000 NA Yes Yes 100.0000 Not intending to undertake 52.480000 -1.902500 GBR
2020 59537 City of Denton, TX Denton United States of America North America No 141541 POINT (-97.1331 33.2148) Yes In progress 5 63 NA NA NA NA NA NA NA NA Do not know 1 Intending to undertake in the next 2 years Yes ICLEI Decreased Not intending to undertake Intending to undertake in the next 2 years No target Intending to undertake in the next 2 years Yes Yes 0.8300 4.2200 9.760000 0.00 0.0000 2.2400 0.0000 0.0000 4.5700 78.3800 82.9500 Yes NA NA NA NA NA No No 99.0000 Yes 33.214800 -97.133100 USA
2020 59631 City of San Leandro, CA San Leandro United States of America North America No 90553 POINT (-122.156 37.7249) Yes Yes 7 41 0 1 0 1 0 0 0 2 Yes 7 Intending to undertake in the next 2 years Yes GPC Decreased Yes Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Intending to undertake in the next 2 years 4.0000 0.0000 17.000000 5.00 15.0000 24.0000 0.0000 14.0000 13.0000 8.0000 41.0000 In progress 15.2000000 4.0000000 20.1000000 60.3000000 4.200000 No No 100.0000 Not intending to undertake 37.724900 -122.156000 USA
2020 60387 Alcaldía de Sincelejo Sincelejo Colombia Latin America No 277773 POINT (-75.3906 9.30457) Yes NA 9 209 NA NA NA NA NA NA NA NA Yes 1 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA Base year emissions (absolute) target Intending to undertake in the next 2 years Yes Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA Not intending to undertake NA NA NA NA NA No Do not know NA Intending to undertake in next 2 years 9.304570 -75.390600 COL
2020 50792 Ville de Monaco Monaco Monaco Europe No 38100 POINT (7.42081 43.7374) Yes Yes 2 26 NA NA NA NA NA NA NA NA No 1 In progress Yes 2006 IPCC Guidelines Increased Yes In progress Base year emissions (absolute) target Yes Yes Yes 0.0000 1.5000 2.700000 0.00 6.6000 86.3000 1.0000 0.0000 1.9000 0.0000 8.5000 Yes 15.0000000 1.0000000 0.0000000 45.0000000 37.000000 No Yes 100.0000 Intending to undertake in next 2 years 43.737400 7.420810 MCO
2020 50545 City of Henderson Henderson United States of America North America Yes 310374 Yes Yes 8 136 0 0 1 0 0 0 0 1 Yes 4 Do not know Intending to undertake in the next 2 years NA NA NA NA No target Do not know Yes Intending to undertake in the next 2 years 0.3400 7.5300 75.360000 6.58 2.4400 0.3000 0.0000 0.0200 5.6200 1.8100 16.4500 Intending to undertake in the next 2 years 2.9000000 0.6000000 0.8000000 87.7000000 8.000000 No Do not know 99.0000 Yes 36.013300 -115.038000 USA
2020 32480 City of Adelaide Adelaide Australia Southeast Asia and Oceania No 24807 POINT (138.601 -34.9285) Yes Yes 4 63 0 0 0 1 0 1 0 2 Yes 17 Yes Yes GPC Stayed the same Not intending to undertake Not intending to undertake Fixed level target Yes Yes Yes 0.0000 0.0000 47.400000 0.00 0.0000 0.0000 1.0000 0.3000 11.6000 39.5000 51.1000 Yes 31.4000000 2.9000000 15.1000000 47.3000000 3.300000 No Yes 100.0000 In progress -34.928500 138.601000 AUS
2020 32480 City of Adelaide Adelaide Australia Southeast Asia and Oceania No 24807 POINT (138.601 -34.9285) Yes Yes 4 63 0 0 0 1 0 1 0 2 Yes 17 Yes Yes GPC Stayed the same Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 0.0000 0.0000 47.400000 0.00 0.0000 0.0000 1.0000 0.3000 11.6000 39.5000 51.1000 Yes 31.4000000 2.9000000 15.1000000 47.3000000 3.300000 No Yes 100.0000 In progress -34.928500 138.601000 AUS
2020 50381 Municipio de Torreón Torreón Mexico Latin America No 679288 POINT (-103.407 25.5428) Yes Yes 12 223 NA NA NA NA NA NA NA NA NA 9 NA In progress NA NA NA NA No target NA NA In progress 0.0000 0.0000 0.000000 0.00 15.0000 0.0000 70.0000 0.0000 15.0000 0.0000 30.0000 Yes NA NA NA NA NA NA NA 90.0000 In progress 25.542800 -103.407000 MEX
2020 58865 Jammerbugt Kommune Jammerbugt Denmark Europe No 38638 POINT (9.54153 57.1453) Yes Yes 4 52 NA NA NA NA NA NA NA NA No 1 Yes Yes GPC Do not know NA Yes Fixed level target In progress Yes In progress NA 0.0000 NA 0.00 0.0000 0.0000 0.0000 NA NA NA NA Do not know 0.0000000 NA 0.0000000 NA NA No No 100.0000 Yes 57.145300 9.541530 DNK
2020 832274 Município de Odemira Portugal Europe No 26066 NA Yes 4 NA NA NA NA NA NA NA NA NA NA 10 NA NA NA NA NA NA NA In progress NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No Do not know 73.0000 NA 37.583300 -8.633300 PRT
2020 35755 Village of Kadiovacik Urla Turkey Europe No 240 POINT (26.5536 38.3434) Yes Yes 1 9 NA NA NA NA NA NA NA NA No 1 Yes Yes 2006 IPCC Guidelines Increased Not intending to undertake Not intending to undertake Fixed level target Intending to undertake in the next 2 years Intending to undertake in the next 2 years Yes 0.0000 23.0000 28.000000 2.00 32.0000 0.0000 0.0000 2.0000 3.0000 10.0000 47.0000 Intending to undertake in the next 2 years NA NA NA NA NA No Yes 100.0000 Not intending to undertake 38.343400 26.553600 TUR
2020 58609 City of Ærøskøbing Ærøskøbing Denmark Europe No 6058 POINT (10.4047 54.8914) Yes Yes NA NA NA NA NA NA NA NA NA NA NA 1 Yes Yes NA Stayed the same Not intending to undertake Not intending to undertake Base year emissions (absolute) target NA NA Yes NA NA NA NA NA NA NA NA NA NA NA In progress NA NA NA NA NA NA NA NA NA 54.891400 10.404700 DNK
2020 60318 Prefeitura de Porto Velho Porto Velho Brazil Latin America No 494 POINT (-40.3776 -20.3338) Yes Intending to undertake in the next 2 years 8 143 NA NA NA NA NA NA NA NA Yes 8 In progress Intending to undertake in the next 2 years NA NA NA NA Base year emissions (absolute) target Intending to undertake in the next 2 years Yes Do not know 0.0000 NA 0.000000 0.00 93.0000 0.0000 7.0000 0.0000 0.0000 0.0000 93.0000 Do not know 0.6100000 8.5000000 6.0000000 84.8900000 NA No Do not know 48.0000 Yes -20.333800 -40.377600 BRA
2020 841540 South Lakeland District Council United Kingdom of Great Britain and Northern Ireland Europe Yes 104955 Yes In progress 5 24 0 0 0 0 1 0 0 1 Do not know 1 Do not know Yes GPC This is our first year of calculation Yes In progress Base year emissions (absolute) target Yes In progress In progress 8.8100 3.1100 26.760000 0.00 2.2800 11.9000 0.1700 5.8300 13.1600 27.9800 43.4200 Yes NA NA NA NA NA No Do not know 100.0000 In progress 51.520700 0.295600 GBR
2020 31112 Kaohsiung City Government Kaohsiung Taiwan, Greater China East Asia No 2773198 POINT (120.344 22.6297) Yes Yes 6 134 NA NA NA NA NA NA NA NA Yes 6 Yes Yes NA Increased Not intending to undertake Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes NA NA NA NA NA NA NA NA NA NA NA Not intending to undertake 8.8000000 3.1000000 2.2000000 80.6000000 5.300000 No Yes 96.2000 In progress 22.629700 120.344000 TWN
2020 60307 Prefeitura de Nova Friburgo Brazil Latin America No 182082 Intending to incorporate in the next 2 years Intending to undertake in the next 2 years 2 34 NA NA NA NA NA NA NA NA Do not know 2 Yes Not intending to undertake NA NA NA NA No target Do not know Intending to undertake in the next 2 years Do not know NA NA NA NA NA NA NA NA NA NA NA Do not know NA NA NA NA NA No Yes 98.0000 Yes -22.260000 -42.540000 BRA
2020 54048 City of Knoxville Knoxville United States of America North America No 187603 POINT (-83.9207 35.9606) Not intending to incorporate Yes 9 56 NA NA NA NA NA NA NA NA Yes 13 Yes Yes GPC Increased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Not intending to undertake 0.0000 19.0000 26.000000 0.00 11.0000 39.0000 0.0000 2.0000 1.5000 1.5000 14.0000 Yes NA NA NA NA NA No No 100.0000 Not intending to undertake 35.960600 -83.920700 USA
2020 55371 Municipalidad de Vicente López Vicente López Argentina Latin America No 270929 POINT (-68.833 -32.8941) Yes Yes 5 1 NA NA NA NA NA NA NA NA No 2 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years Yes In progress 5.0000 2.0000 52.000000 0.00 4.0000 3.0000 33.0000 1.0000 0.0000 0.0000 4.0000 NA NA NA NA NA NA No NA 100.0000 NA -32.894100 -68.833000 ARG
2020 44077 Kampala City Kampala Uganda Africa No 1631210 Yes Yes 3 65 0 1 1 3 0 1 0 6 Yes 2 Yes Yes 2006 IPCC Guidelines This is our first year of calculation Not intending to undertake Intending to undertake in the next 2 years Baseline scenario (business as usual) target Yes Yes Intending to undertake in the next 2 years 36.0000 NA NA NA 17.0000 NA 47.0000 NA NA NA NA NA NA NA NA NA NA No NA 97.2000 Intending to undertake in next 2 years 0.313600 32.581100 UGA
2020 50558 City of London, ON London, ON Canada North America No 401000 POINT (-81.2497 42.9837) Yes In progress 7 30 NA NA NA NA NA NA NA NA NA 6 Intending to undertake in the next 2 years Yes GPC Increased Intending to undertake in the next 2 years Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 0.5000 0.0000 6.200000 0.00 23.9000 58.4000 0.0000 NA 2.3000 8.0000 34.2000 Not intending to undertake 6.2000000 1.2000000 3.5000000 79.1000000 10.000000 No No 100.0000 Not intending to undertake 42.983700 -81.249700 CAN
2020 826210 Junta Intermunicipal de Medio Ambiente de la Costa Sur (JICOSUR) JICOSUR Mexico Latin America No 147918 POINT (-104.38 19.34) In progress Intending to undertake in the next 2 years 3 70 NA NA NA NA NA NA NA NA Do not know 3 Yes Intending to undertake in the next 2 years NA NA NA NA No target Yes Yes Not intending to undertake NA NA NA NA NA NA NA NA NA NA NA Intending to undertake in the next 2 years NA NA NA NA NA No Do not know 100.0000 NA 19.340000 -104.380000 MEX
2020 69848 Municipio de Loja Loja Ecuador Latin America No 214855 POINT (-3.99313 -79.2042) Yes In progress 4 57 NA NA NA NA NA NA NA NA NA 3 Yes Yes GPC This is our first year of calculation Yes Intending to undertake in the next 2 years Baseline scenario (business as usual) target Yes Yes Yes 0.0000 0.0000 0.000000 0.00 75.0000 0.0000 0.0000 0.0000 0.0000 25.0000 100.0000 NA NA NA NA NA NA No NA NA Yes 0.084400 -76.891100 ECU
2020 50549 City of Fort Worth Fort Worth United States of America North America No 909585 POINT (-97.3308 32.7555) Yes Intending to undertake in the next 2 years 9 104 0 1 2 1 1 1 0 6 Yes 15 Not intending to undertake Intending to undertake in the next 2 years NA NA NA NA No target Not intending to undertake Yes In progress 0.2000 20.0000 47.300000 0.00 0.3000 11.0000 0.0000 0.0000 1.2000 20.0000 21.5000 Yes 1.6000000 0.1800000 0.1700000 93.0000000 1.330000 No No 100.0000 Yes 32.755500 -97.330800 USA
2020 54337 Greater Amman Municipality Amman Jordan Middle East No 3800000 POINT (35.9284 31.9454) Yes Not intending to undertake 4 68 NA NA NA NA NA NA NA NA Yes 3 Yes Yes GPC Increased Not intending to undertake In progress Baseline scenario (business as usual) target In progress Do not know Not intending to undertake 0.0000 0.0000 87.900000 0.00 0.1000 0.0000 2.8000 1.0000 4.4000 3.7000 8.2000 Not intending to undertake 14.0000000 0.0000000 27.0000000 33.0000000 26.000000 No No 99.6000 Not intending to undertake 31.945400 35.928400 JOR
2020 50794 Prefeitura Municipal de Caieiras Caieiras Brazil Latin America No 101470 POINT (-46.7402 -23.3612) Yes In progress 7 49 0 0 0 1 0 0 0 1 Do not know 1 In progress Intending to undertake in the next 2 years NA NA NA NA No target In progress Yes Intending to undertake in the next 2 years 19.0000 NA NA NA 75.0000 4.0000 NA NA NA 2.0000 NA NA NA NA NA NA NA No No 97.0000 Yes -23.361200 -46.740200 BRA
2020 826381 Junta Intermunicipal de la Región Norte del Estado de Jalisco (JINOR) Mexico Latin America Yes 4412 Yes Yes NA NA NA NA NA NA NA NA NA NA Yes 1 Do not know Yes NA NA NA Do not know Base year emissions (absolute) target Do not know Yes Intending to undertake in the next 2 years 0.0000 0.0000 0.000000 0.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 Yes NA NA NA NA NA No No 79.0000 In progress 37.985009 -103.543832 MEX
2020 54100 City of Columbia, MO Columbia, MO United States of America North America No 123412 POINT (-92.3341 38.9517) Intending to incorporate in the next 2 years Yes 10 107 NA NA NA NA NA NA NA NA Do not know 1 Yes Yes GPC Decreased Intending to undertake in the next 2 years In progress Base year emissions (absolute) target Yes Yes Yes 0.0000 82.9900 1.310000 0.00 0.0000 0.0000 0.0000 3.2400 0.1200 12.3400 12.4600 In progress 1.0000000 1.0000000 6.0000000 87.0000000 5.000000 No Do not know 100.0000 Yes 38.951700 -92.334100 USA
2020 58395 Bærum Kommune Bærum Norway Europe No 127867 POINT (10.5938 59.9205) Yes Yes 3 26 NA NA NA NA NA NA NA NA No 3 Yes Yes 2006 IPCC Guidelines Increased Intending to undertake in the next 2 years Yes Base year emissions (absolute) target Yes Yes Yes 0.0000 0.1000 1.800000 0.00 95.0000 0.0000 0.0000 0.5000 0.0000 2.6000 97.6000 Yes 18.0000000 4.0000000 NA 57.0000000 20.000000 No Yes 100.0000 Yes 59.920500 10.593800 NOR
2020 60588 City of Alba-Iulia Alba-Iulia Romania Europe No 74000 POINT (23.569 46.0823) Yes In progress NA NA NA NA NA NA NA NA NA NA No 1 In progress Intending to undertake in the next 2 years NA NA NA NA Fixed level target NA Yes Yes NA NA 1.000000 NA 96.0000 NA NA NA 2.0000 1.0000 NA NA NA NA NA NA NA No Yes 95.0000 Intending to undertake in next 2 years 46.082300 23.569000 ROU
2020 842160 Balikesir Metropolitan Municipality Balikesir Turkey Europe Yes 1228620 POINT (27.8903 39.6533) Intending to incorporate in the next 2 years Intending to undertake in the next 2 years 1 2 NA NA NA NA NA NA NA NA NA 1 Intending to undertake in the next 2 years In progress 2006 IPCC Guidelines NA NA NA No target NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No NA NA 39.653300 27.890300 TUR
2020 73879 Roskilde Roskilde Denmark Europe No 87542 POINT (12.0878 55.6419) In progress Yes 1 12 NA NA NA NA NA NA NA NA NA 3 Yes Yes GPC Decreased Not intending to undertake Not intending to undertake Fixed level target Yes Yes Do not know 7.0000 36.0000 22.000000 0.00 0.0000 21.0000 1.0000 0.0000 0.0000 13.0000 13.0000 NA NA NA NA NA NA No Yes 100.0000 Yes 55.641900 12.087800 DNK
2020 73879 Roskilde Roskilde Denmark Europe No 87542 POINT (12.0878 55.6419) In progress Yes 1 12 NA NA NA NA NA NA NA NA NA 3 Yes Yes GPC Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Do not know 7.0000 36.0000 22.000000 0.00 0.0000 21.0000 1.0000 0.0000 0.0000 13.0000 13.0000 NA NA NA NA NA NA No Yes 100.0000 Yes 55.641900 12.087800 DNK
2020 74423 City of Key West, FL Key West United States of America North America No 24565 POINT (24.5551 81.78) Yes Yes 6 118 NA NA NA NA NA NA NA NA NA 7 In progress In progress NA NA NA NA Base year emissions (absolute) target Yes In progress Intending to undertake in the next 2 years 0.0000 10.0000 75.000000 0.00 0.5000 12.0000 0.5000 0.0000 2.0000 0.0000 2.5000 Yes 3.0000000 14.0000000 16.0000000 55.0000000 8.000000 No No 100.0000 Yes 24.563700 -81.776800 USA
2020 52897 City of Aspen Aspen United States of America North America No 9003 POINT (-106.837 39.195) Yes Yes 8 76 NA NA NA NA NA NA NA NA Yes 11 Intending to undertake in the next 2 years Yes GPC Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Not intending to undertake NA NA NA NA NA NA NA NA NA NA NA Not intending to undertake 36.5000000 5.5000000 12.0000000 37.0000000 9.000000 No No 100.0000 Yes 39.195000 -106.837000 USA
2020 50665 Município de Ovar Ovar Portugal Europe No 55398 POINT (-8.59723 40.8901) Do not know In progress 8 70 NA NA NA NA NA NA NA NA Do not know 3 Do not know In progress NA NA NA NA No target Do not know Yes Do not know NA 23.0000 19.000000 NA 26.0000 NA 32.0000 NA NA NA NA Do not know NA NA NA NA NA No Do not know NA Not intending to undertake 40.890100 -8.597230 PRT
2020 840371 Falkoping Kommun Falköping Sweden Europe No 33334 Yes Yes 6 37 NA NA NA NA NA NA NA NA NA 6 Intending to undertake in the next 2 years Yes Regional or country specific methodology Stayed the same Intending to undertake in the next 2 years Do not know Base year emissions (absolute) target Yes Yes Yes NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No Yes 100.0000 In progress 58.169508 13.554241 SWE
2020 35274 City of Portland, ME Portland, ME United States of America North America No 66937 POINT (-70.2553 43.6615) Yes Yes 7 130 0 1 0 0 0 0 0 1 Yes 3 In progress Yes GPC NA NA Intending to undertake in the next 2 years Fixed level target In progress Yes Yes 2.5000 0.0500 48.500000 0.00 9.0000 30.5000 0.0200 4.1300 1.7000 3.6000 14.3000 In progress NA NA NA NA NA No No 100.0000 Yes 43.661500 -70.255300 USA
2020 54510 Umeå municipality Umeå Sweden Europe No 127119 POINT (20.263 63.8258) Yes Yes 3 24 NA NA NA NA NA NA NA NA Do not know 3 Yes Yes City specific methodology Stayed the same Yes Yes Baseline scenario (business as usual) target Yes Yes Yes 8.0000 NA NA NA 89.0000 NA NA NA NA 3.0000 NA Yes 7.0000000 27.0000000 1.0000000 50.0000000 15.000000 No Yes 100.0000 Yes 63.825800 20.263000 SWE
2020 54510 Umeå municipality Umeå Sweden Europe No 127119 POINT (20.263 63.8258) Yes Yes 3 24 NA NA NA NA NA NA NA NA Do not know 3 Yes Yes City specific methodology Stayed the same Yes Yes Base year emissions (absolute) target Yes Yes Yes 8.0000 NA NA NA 89.0000 NA NA NA NA 3.0000 NA Yes 7.0000000 27.0000000 1.0000000 50.0000000 15.000000 No Yes 100.0000 Yes 63.825800 20.263000 SWE
2020 35860 City of Dallas Dallas United States of America North America No 1345047 POINT (-96.8004 32.7801) Yes Yes 5 56 NA NA NA NA NA NA NA NA Yes 2 Yes Yes GPC Decreased Not intending to undertake Yes Fixed level target Yes Yes Yes 0.1000 20.0000 47.000000 0.00 0.1000 11.0000 0.1000 0.5000 1.2000 20.0000 21.3000 Yes NA NA NA NA NA No No 100.0000 Yes 32.780100 -96.800400 USA
2020 59707 Town of Princeton, NJ United States of America North America No 31822 Yes Intending to undertake in the next 2 years 4 91 NA NA NA NA NA NA NA NA Yes 2 In progress Yes ICLEI Stayed the same Yes Not intending to undertake Base year emissions (absolute) target In progress Yes In progress NA 24.4000 24.500000 NA 0.7000 47.5000 0.3000 2.6000 NA NA NA Yes NA NA NA NA NA No No 100.0000 Not intending to undertake 40.356300 -74.669300 USA
2020 17411 Southend on Sea Borough Council Southend-on-Sea United Kingdom of Great Britain and Northern Ireland Europe Yes 182463 Yes Yes 4 42 0 1 0 1 0 0 0 2 No 4 Yes In progress 2006 IPCC Guidelines NA NA NA Base year emissions (absolute) target Yes Yes Intending to undertake in the next 2 years 1.8300 0.2000 49.470000 0.00 0.0000 0.0000 0.0000 48.5000 0.0000 0.0000 0.0000 In progress NA NA NA NA NA No No 100.0000 Yes 51.159800 0.265200 GBR
2020 54098 City of Thunder Bay Thunder Bay Canada North America No 107909 POINT (-89.2477 48.3809) Yes Yes 4 56 0 0 0 1 0 0 0 1 No 2 Yes Intending to undertake in the next 2 years NA NA NA NA Base year emissions (absolute) target In progress Yes Yes 1.0000 0.0000 29.000000 0.00 23.0000 34.0000 0.0000 0.0000 1.0000 12.0000 36.0000 Not intending to undertake 3.9000000 1.2000000 1.0000000 89.7000000 4.200000 No Yes 100.0000 Not intending to undertake 48.380900 -89.247700 CAN
2020 50380 Municipio de Bucaramanga Bucaramanga Colombia Latin America No 528269 POINT (-73.1227 7.11034) Yes Yes 1 20 NA NA NA NA NA NA NA NA NA 1 Yes In progress NA NA NA NA No target Yes Yes Yes 0.0000 7.0000 12.000000 0.00 70.0000 0.0000 10.0000 NA 0.0000 0.0000 70.0000 NA NA NA NA NA NA No Do not know 80.0000 In progress 7.110340 -73.122700 COL
2020 59538 City of Mississauga Mississauga Canada North America No 721599 POINT (43.589 -79.6441) In progress Yes 15 222 NA NA NA NA NA NA NA NA Yes 5 Yes Yes GPC Increased Not intending to undertake Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes 0.6000 0.0000 8.200000 0.00 23.7000 61.0000 0.0000 0.0000 0.3000 6.2000 30.2000 Do not know 11.0000000 0.0000000 1.0000000 84.0000000 4.000000 No Yes 100.0000 Not intending to undertake 43.600000 -79.650000 CAN
2020 54652 Prefeitura de Osasco Osasco Brazil Latin America No 676 POINT (23.5328 46.7919) Do not know Do not know NA NA NA NA NA NA NA NA NA NA NA 1 Do not know Not intending to undertake NA NA NA NA No target NA Do not know In progress 8.0000 3.0000 9.000000 0.00 68.0000 3.0000 0.0000 4.0000 0.0000 5.0000 73.0000 NA NA NA NA NA NA NA NA NA NA -23.541100 -46.368900 BRA
2020 36152 Tallinn City Council Tallinn Estonia Europe Yes 445024 POINT (24.7536 59.437) In progress In progress 5 16 0 1 0 0 0 1 0 2 Yes 5 In progress Yes 2006 IPCC Guidelines Do not know Not intending to undertake Do not know Base year emissions (absolute) target In progress In progress In progress 40.0000 0.0000 20.000000 0.00 0.0000 0.0000 0.0000 35.0000 2.0000 3.0000 5.0000 In progress NA NA NA NA NA No Do not know 100.0000 Yes 59.437000 24.753600 EST
2020 36282 Comune di Chieti Chieti Italy Europe No 52125 POINT (14.1399 42.3828) Intending to incorporate in the next 2 years Intending to undertake in the next 2 years 1 1 NA NA NA NA NA NA NA NA NA 1 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target NA Not intending to undertake Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No No 100.0000 Yes 42.382800 14.139900 ITA
2020 31169 Government of Hong Kong Special Administrative Region Hong Kong China, Hong Kong Special Administrative Region East Asia No 7507400 POINT (114.14 22.2881) Yes Yes 5 49 NA NA NA NA NA NA NA NA Yes 8 Yes Yes GPC Increased Not intending to undertake Not intending to undertake Base year intensity target Yes Yes Do not know 0.0000 44.0000 29.100000 0.00 0.0000 26.6000 0.3000 0.0000 0.0000 0.0000 0.0000 Yes 78.0000000 NA 22.0000000 NA NA Yes Yes 99.9900 Yes 22.288100 114.140000 HKG
2020 59669 City of North Vancouver North Vancouver Canada North America No 52898 POINT (-123.072 49.32) Yes Yes 14 115 0 0 0 2 1 1 0 4 Yes 12 Yes Yes NA Stayed the same Yes Not intending to undertake Base year emissions (absolute) target Yes Yes Intending to undertake in the next 2 years 6.0000 0.0000 2.000000 0.00 90.0000 0.0000 1.0000 0.0000 0.0000 1.0000 91.0000 Intending to undertake in the next 2 years NA NA NA NA NA No No 100.0000 Not intending to undertake 49.320000 -123.072000 CAN
2020 49330 Kansas City Kansas City United States of America North America No 505198 POINT (-94.573 39.1429) Yes Yes 2 36 0 1 0 0 0 0 0 1 Yes 1 Intending to undertake in the next 2 years Yes ICLEI Decreased Intending to undertake in the next 2 years Yes Fixed level target Yes Yes Yes 0.0000 40.0000 26.000000 0.00 0.0000 7.0000 0.0000 0.0000 6.0000 21.0000 27.0000 Intending to undertake in the next 2 years NA NA NA NA NA Yes Do not know 100.0000 Intending to undertake in next 2 years 39.142900 -94.573000 USA
2020 49330 Kansas City Kansas City United States of America North America No 505198 POINT (-94.573 39.1429) Yes Yes 2 36 0 1 0 0 0 0 0 1 Yes 1 Intending to undertake in the next 2 years Yes ICLEI Decreased Intending to undertake in the next 2 years Yes Base year emissions (absolute) target Yes Yes Yes 0.0000 40.0000 26.000000 0.00 0.0000 7.0000 0.0000 0.0000 6.0000 21.0000 27.0000 Intending to undertake in the next 2 years NA NA NA NA NA Yes Do not know 100.0000 Intending to undertake in next 2 years 39.142900 -94.573000 USA
2020 59166 Municipalidad de Independencia Independencia Chile Latin America No 105794 POINT (-68.8154 -32.8421) Yes Yes 7 54 1 1 0 0 0 0 0 2 Yes 7 Yes Yes Regional or country specific methodology This is our first year of calculation Do not know Do not know Base year emissions (absolute) target Yes Do not know In progress 0.0000 55.0000 0.000000 0.00 36.0000 0.0000 0.0000 0.0000 4.0000 5.0000 45.0000 Yes 26.2000000 15.0000000 17.8000000 17.0000000 41.000000 No Yes 100.0000 Intending to undertake in next 2 years -11.996912 -77.054488 CHL
2020 54298 Dalian Municipal People’s Government Dalian China East Asia No 5952057 POINT (121.567 38.9389) NA NA 3 NA NA NA NA NA NA NA NA NA NA 1 NA Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 38.938900 121.567000 CHN
2020 50555 City of Hamilton Hamilton Canada North America No 572575 POINT (-79.8661 43.25) Yes In progress 15 176 0 1 0 0 1 0 0 2 Yes 16 In progress Yes GPC Increased Do not know Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Not intending to undertake 0.5000 0.0000 6.000000 0.00 25.0000 61.0000 0.0000 0.0000 0.5000 7.0000 32.5000 Yes NA NA NA NA NA No Yes 91.6500 Yes 43.250000 -79.866100 CAN
2020 53921 City of Tempe, AZ Tempe United States of America North America No 192364 POINT (-111.94 33.4255) Yes In progress 6 132 1 2 1 0 1 0 0 5 Yes 14 Yes Yes GPC Do not know Intending to undertake in the next 2 years Do not know Base year emissions (absolute) target Yes Yes Yes NA 40.0000 25.000000 NA 2.0000 25.0000 0.0000 2.0000 5.0000 1.0000 NA Not intending to undertake 3.9000000 6.3000000 31.3000000 30.4000000 28.000000 No No 100.0000 In progress 33.425500 -111.940000 USA
2020 58671 Helsingør Kommune / Elsinore Municipality Helsingør Denmark Europe No 62695 POINT (12.5921 56.0308) Yes Yes 3 43 NA NA NA NA NA NA NA NA No 6 Yes Yes 2006 IPCC Guidelines Decreased In progress Yes Base year emissions (absolute) target Yes Yes Yes 5.0000 27.0000 29.000000 0.00 0.0000 31.0000 1.0000 0.0000 1.0000 6.0000 7.0000 Yes 9.0000000 12.0000000 3.0000000 55.0000000 21.000000 No Yes 100.0000 Yes 56.030800 12.592100 DNK
2020 54409 City of Espoo Espoo Finland Europe No 289731 POINT (24.6559 60.2055) Yes Yes 4 19 NA NA NA NA NA NA NA NA Yes 4 Yes Yes Regional or country specific methodology Decreased In progress Yes Base year emissions (absolute) target Yes Yes Yes 18.0000 8.0000 6.000000 0.00 19.0000 35.0000 0.0000 5.0000 0.0000 9.0000 28.0000 Yes 18.0000000 9.0000000 2.0000000 45.0000000 26.000000 No Yes 100.0000 Yes 60.205500 24.655900 FIN
2020 68378 Municipalidad de Santiago de Surco Santiago de Surco Peru Latin America No 499210 POINT (-77.0051 -12.1453) Yes In progress 2 35 NA NA NA NA NA NA NA NA Do not know 3 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target Do not know Yes Do not know NA NA 20.000000 NA 80.0000 NA NA NA NA NA NA Do not know NA NA NA NA NA No Do not know 99.0000 Intending to undertake in next 2 years -12.145300 -77.005100 PER
2020 848404 Mongui Colombia Latin America Yes 4469 In progress Not intending to undertake 1 16 NA NA NA NA NA NA NA NA Do not know 1 In progress Intending to undertake in the next 2 years NA NA NA NA Baseline scenario (business as usual) target Do not know NA Do not know NA NA NA NA NA NA NA NA NA NA NA Do not know NA NA NA NA NA Do not know Do not know NA NA 9.230000 -74.740000 COL
2020 60374 Alcaldía de Ibagué Ibagué Colombia Latin America No 564077 POINT (-75.24 4.44851) Yes Intending to undertake in the next 2 years 3 40 NA NA NA NA NA NA NA NA NA 3 Yes Intending to undertake in the next 2 years NA NA NA NA No target Yes Yes Yes NA NA NA NA 99.0000 NA NA NA 1.0000 NA NA NA NA NA NA NA NA Yes Yes 93.0000 Yes 4.448510 -75.240000 COL
2020 31172 Mexico City Mexico City Mexico Latin America No 9041395 POINT (-99.1332 19.4326) Yes Yes 3 75 0 1 0 0 0 0 0 1 Yes 3 Yes Yes NA Increased Not intending to undertake Intending to undertake in the next 2 years Fixed level target Yes Yes In progress 0.0000 31.0000 48.000000 0.00 0.0000 0.0000 21.0000 0.0000 0.0000 0.0000 0.0000 Intending to undertake in the next 2 years 45.0000000 1.0000000 5.0000000 23.0000000 26.000000 No Yes 98.0000 Yes 19.432600 -99.133200 MEX
2020 43938 The Executive Council, Govt of Dubai Dubai United Arab Emirates Middle East No 3335900 POINT (55.2708 25.2048) Yes Yes 6 14 0 0 0 1 0 0 0 1 No 6 Yes Yes City specific methodology Increased Not intending to undertake Not intending to undertake Baseline scenario (business as usual) target Yes Yes Yes 0.0000 0.0000 93.800000 0.00 0.0000 0.0000 0.0000 0.0000 6.2000 0.0000 6.2000 Yes 13.6000000 0.8000000 10.2000000 62.9000000 12.500000 No No 100.0000 In progress 25.204800 55.270800 ARE
2020 50394 Prefeitura Municipal de João Pessoa João Pessoa Brazil Latin America No 723515 POINT (-34.8639 -7.16882) Intending to incorporate in the next 2 years Intending to undertake in the next 2 years 9 175 NA NA NA NA NA NA NA NA Do not know 1 Do not know Yes GPC This is our first year of calculation Do not know In progress No target Intending to undertake in the next 2 years Do not know Intending to undertake in the next 2 years 8.6988 2.2147 7.744100 0.00 60.8352 1.1855 5.8967 4.9546 0.7783 7.6921 69.3056 Intending to undertake in the next 2 years NA NA NA NA NA No Do not know 100.0000 Intending to undertake in next 2 years -7.168820 -34.863900 BRA
2020 58796 Odder Kommune Odder Denmark Europe No 22624 POINT (10.15 55.9757) Yes Yes 3 NA NA NA NA NA NA NA NA NA NA 1 Yes Not intending to undertake NA NA NA NA Base year emissions (absolute) target Yes Not intending to undertake Do not know 5.0000 70.0000 15.000000 0.00 0.0000 0.0000 0.0000 NA NA 10.0000 NA Do not know NA NA NA NA NA No No 100.0000 Not intending to undertake 55.975700 10.150000 DNK
2020 826211 Junta Intermunicipal de Medio Ambiente Altos Sur (JIAS) Mexico Latin America Yes 399724000 Intending to incorporate in the next 2 years Yes 3 56 0 0 0 0 0 2 0 2 Yes 1 In progress Yes 2006 IPCC Guidelines This is our first year of calculation Do not know Not intending to undertake No target Yes Yes Not intending to undertake NA 0.0000 12.000000 NA NA NA 88.0000 NA NA NA NA Not intending to undertake NA NA NA NA NA No No 97.0000 Not intending to undertake 37.985009 -103.543832 MEX
2020 44185 Suwon City Suwon Republic of Korea East Asia No 1235093 POINT (126.805 37.17) Yes Yes 1 16 NA NA NA NA NA NA NA NA Yes 1 Yes Yes GPC Decreased Not intending to undertake Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes 0.9900 45.4000 16.900000 NA 0.4400 30.3000 NA 4.7400 0.9400 0.2900 NA Yes NA NA NA NA NA No Yes 100.0000 Yes 37.170000 126.805000 KOR
2020 44185 Suwon City Suwon Republic of Korea East Asia No 1235093 POINT (126.805 37.17) Yes Yes 1 16 NA NA NA NA NA NA NA NA Yes 1 Yes Yes GPC Decreased Not intending to undertake Intending to undertake in the next 2 years Base year intensity target Yes Yes Yes 0.9900 45.4000 16.900000 NA 0.4400 30.3000 NA 4.7400 0.9400 0.2900 NA Yes NA NA NA NA NA No Yes 100.0000 Yes 37.170000 126.805000 KOR
2020 841964 City of Hallandale Beach, FL Hallandale Beach United States of America North America Yes 37113 POINT (-80.1484 25.9812) In progress Yes 10 122 0 1 0 0 1 0 0 2 Yes 8 Yes Yes GPC This is our first year of calculation Not intending to undertake Not intending to undertake Base year emissions (absolute) target In progress Yes Intending to undertake in the next 2 years 0.0000 5.3400 70.040000 0.00 0.0000 17.1300 0.3800 7.0500 0.0600 0.0000 0.0600 Yes NA NA NA NA NA No No 100.0000 Intending to undertake in next 2 years 25.981200 -80.148400 USA
2020 31156 Municipality of Curitiba Curitiba Brazil Latin America No 1893997 POINT (-49.2647 -25.4311) Yes Yes 7 61 0 1 0 0 0 2 0 3 Do not know 9 In progress Yes GPC Decreased Do not know Yes No target In progress Yes Intending to undertake in the next 2 years 8.2000 4.1000 10.500000 NA 65.2000 2.6000 2.5000 0.0000 NA 6.9000 NA Intending to undertake in the next 2 years NA NA NA NA NA No Yes 100.0000 Intending to undertake in next 2 years -25.431100 -49.264700 BRA
2020 826238 Alcaldia de Mosquera Mosquera Colombia Latin America No 86954 POINT (-74.2302 4.70592) In progress Intending to undertake in the next 2 years 1 9 NA NA NA NA NA NA NA NA Yes 1 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA Fixed level target In progress In progress In progress NA NA NA NA NA NA NA NA NA NA NA Intending to undertake in the next 2 years NA NA NA NA NA No Yes 98.0000 In progress 4.705920 -74.230200 COL
2020 35848 Municipality of Belo Horizonte Belo Horizonte Brazil Latin America No 2513451 POINT (-43.9345 -19.9167) Yes Yes 7 139 NA NA NA NA NA NA NA NA Yes 16 In progress Yes GPC Decreased Not intending to undertake Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Intending to undertake in the next 2 years 8.4000 3.3000 9.300000 0.00 64.9000 2.5000 2.0000 0.0000 1.0000 8.6000 74.5000 Yes 27.8000000 0.4000000 5.1000000 30.1000000 36.600000 Do not know Yes 96.3000 Yes -19.916700 -43.934500 BRA
2020 840036 La Paz Argentina Latin America No 25808 Intending to incorporate in the next 2 years Yes 5 48 NA NA NA NA NA NA NA NA No 9 Yes Yes GPC Do not know Not intending to undertake Not intending to undertake Baseline scenario (business as usual) target Yes NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA -16.494200 -68.147500 ARG
2020 60268 Prefeitura de Brumadinho Brumadinho Brazil Latin America No 33973 POINT (-44.1982 -20.1427) In progress In progress 4 71 NA NA NA NA NA NA NA NA NA 3 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years Yes Yes 0.0000 0.0000 0.000000 0.00 99.0000 0.0000 0.0000 0.0000 1.0000 0.0000 100.0000 Yes 30.0000000 30.0000000 10.0000000 60.0000000 20.000000 Yes No 100.0000 Yes -20.142700 -44.198200 BRA
2020 43934 City of Perth Perth Australia Southeast Asia and Oceania No 32233 POINT (115.861 -31.9526) Do not know In progress 8 NA NA NA NA NA NA NA NA NA Yes 1 In progress Yes GPC This is our first year of calculation Not intending to undertake Intending to undertake in the next 2 years Baseline scenario (business as usual) target Intending to undertake in the next 2 years Yes Yes 0.3000 26.8000 60.200000 0.00 0.5000 0.0000 5.3000 0.0000 3.0000 3.9000 7.4000 Not intending to undertake 41.0000000 NA NA 42.0000000 6.000000 No No 100.0000 In progress -31.952600 115.861000 AUS
2020 54111 City of Iowa City Iowa City United States of America North America No 76290 POINT (-91.5302 41.6611) Yes Yes 10 133 NA NA NA NA NA NA NA NA NA 2 Yes Yes GPC Increased Yes Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 0.2000 45.3000 2.100000 0.00 0.0000 13.0000 0.0000 0.0000 0.0000 39.4000 39.4000 NA NA NA NA NA NA No NA NA NA 41.661100 -91.530200 USA
2020 54459 City of Reykjavík Reykjavík Iceland Europe No 132080 POINT (-21.8174 64.1265) Yes Yes 3 19 NA NA NA NA NA NA NA NA Do not know 5 Yes Yes GPC Increased In progress Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes 0.0000 0.0000 0.000000 30.00 70.0000 0.0000 0.0000 0.0000 0.0000 0.0000 100.0000 Do not know 5.0000000 5.0000000 1.0000000 75.0000000 14.000000 No Yes 99.9000 Not intending to undertake 64.126500 -21.817400 ISL
2020 73671 Godoy Cruz Argentina Latin America No 191903 Do not know Yes 4 60 NA NA NA NA NA NA NA NA NA 13 Yes Yes GPC This is our first year of calculation Not intending to undertake Not intending to undertake Baseline scenario (business as usual) target Yes NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA -32.916700 -68.833300 ARG
2020 55334 Município de Braga Braga Portugal Europe No 189331 POINT (-8.43821 41.5337) Yes Yes 7 87 0 0 0 1 0 0 0 1 Yes 19 Yes Yes GPC Increased Yes In progress Base year emissions (absolute) target Yes Yes Yes 8.0000 20.0000 18.000000 0.00 23.0000 0.0000 0.0000 2.0000 7.0000 22.0000 52.0000 Yes 13.0000000 1.0000000 2.0000000 66.0000000 18.000000 Yes Yes 100.0000 In progress 41.533700 -8.438210 PRT
2020 53860 City of Wilmington, NC Wilmington United States of America North America No 119045 Yes Yes 3 48 NA NA NA NA NA NA NA NA NA 2 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years Intending to undertake in the next 2 years In progress 2.8000 19.1000 34.600000 0.00 2.3000 37.8000 0.6000 0.2000 2.2000 0.4000 4.9000 Yes NA NA NA NA NA No No 99.0000 Not intending to undertake 34.210000 -77.886600 USA
2020 54088 City of Peterborough Peterborough Canada North America No 82094 Yes Yes 5 74 NA NA NA NA NA NA NA NA Yes 8 In progress Yes NA Decreased Not intending to undertake In progress Base year emissions (absolute) target Yes Do not know Intending to undertake in the next 2 years 1.0000 0.0000 28.000000 0.00 23.0000 35.0000 0.0000 0.0000 1.0000 12.0000 36.0000 Do not know 14.0000000 4.0000000 0.0000000 75.0000000 7.000000 No Yes 99.0000 In progress 44.300000 -78.316700 CAN
2020 54327 Semarang City Government Indonesia Southeast Asia and Oceania No 1674358 In progress Yes 2 11 0 0 1 1 0 0 0 2 Yes 1 Yes Yes 2006 IPCC Guidelines Decreased In progress In progress Baseline scenario (business as usual) target Yes Yes In progress NA NA NA NA NA NA NA 100.0000 NA NA NA Yes NA NA NA NA NA No Yes 59.2500 In progress -6.966700 110.416700 IDN
2020 826209 Aipromades Lago de Chapala Chapala Mexico Latin America No 601263 POINT (-103.191 20.2962) Yes Yes 5 93 NA NA NA NA NA NA NA NA NA 2 Yes Yes 2006 IPCC Guidelines NA NA NA NA In progress Yes In progress NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No No 98.0000 Intending to undertake in next 2 years 20.296200 -103.191000 MEX
2020 840926 Prefeitura de Serra Talhada Brazil Latin America No 86350 Yes Intending to undertake in the next 2 years 4 95 0 0 1 1 0 0 0 2 Yes 1 Intending to undertake in the next 2 years Yes GPC This is our first year of calculation Intending to undertake in the next 2 years In progress No target Intending to undertake in the next 2 years Yes Intending to undertake in the next 2 years 8.6000 1.9000 7.800000 0.00 60.8000 1.2000 5.2000 4.7000 1.2000 8.6000 70.6000 Intending to undertake in the next 2 years NA NA NA NA NA No Yes 100.0000 Intending to undertake in next 2 years -12.250000 -38.970000 BRA
2020 54078 City of Hayward Hayward United States of America North America No 161456 POINT (-122.081 37.6689) Yes Yes 5 81 0 1 0 0 0 0 0 1 Do not know 3 Yes Yes GPC Decreased Not intending to undertake In progress Base year emissions (absolute) target Yes Yes Yes 4.0000 0.0000 20.000000 5.00 21.0000 27.0000 0.0000 2.0000 13.0000 8.0000 47.0000 Not intending to undertake 6.9000000 0.3600000 1.2000000 89.4000000 2.200000 No Yes 100.0000 Yes 37.668900 -122.081000 USA
2020 58513 City of Medford Medford United States of America North America No 57765 POINT (-122.876 42.3265) Intending to incorporate in the next 2 years Yes 12 182 NA NA NA NA NA NA NA NA Yes 15 In progress Yes GPC Increased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Intending to undertake in the next 2 years 5.6000 0.5000 48.500000 0.00 8.9000 30.5000 0.2000 0.5000 1.7000 3.6000 14.2000 Not intending to undertake 9.4500000 2.4900000 7.2100000 72.5400000 8.320000 No No 100.0000 Not intending to undertake 42.326500 -122.876000 USA
2020 55325 Município de Águeda Águeda Portugal Europe No 47729 POINT (-8.44582 40.5753) Yes Yes 6 80 0 1 0 0 1 1 0 3 Yes 12 Yes Yes 2006 IPCC Guidelines Decreased Do not know Do not know Base year emissions (absolute) target Yes Yes Yes 0.0000 9.0000 6.000000 0.00 15.9000 3.3000 0.0000 25.3000 0.0000 40.5000 56.4000 In progress NA NA NA NA NA Yes Do not know 100.0000 Yes 40.575300 -8.445820 PRT
2020 35885 Tel Aviv-Yafo Municipality Tel Aviv-Yafo Israel Middle East No 443940 POINT (34.7823 32.0816) Yes Yes 7 86 NA NA NA NA NA NA NA NA Yes 19 Yes Yes GPC Increased Intending to undertake in the next 2 years Yes No target Intending to undertake in the next 2 years Yes Yes NA 25.0000 70.000000 NA NA NA NA NA 4.3000 0.7000 NA In progress 17.0000000 11.0000000 0.0000000 56.0000000 16.000000 No Do not know 100.0000 Yes 32.081600 34.782300 ISR
2020 57347 Pingtung County Government Pingtung County Taiwan, Greater China East Asia No 816636 POINT (120.47 22.6558) Yes Yes 6 99 0 0 1 0 0 0 0 1 Yes 5 In progress Yes Regional or country specific methodology Decreased Not intending to undertake In progress Base year emissions (absolute) target Yes Yes Yes 0.0600 46.1100 33.230000 0.00 3.1900 11.7900 2.1000 1.3300 1.5100 0.6800 5.3800 In progress 6.3000000 12.0000000 0.7000000 77.0000000 4.000000 Yes Yes 55.0400 Yes 22.655800 120.470000 TWN
2020 49334 City of Richmond, VA Richmond, VA United States of America North America No 230436 POINT (-77.436 37.5407) Yes In progress 5 79 0 1 0 0 1 0 0 2 Yes 8 Intending to undertake in the next 2 years Yes ICLEI Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Intending to undertake in the next 2 years Intending to undertake in the next 2 years 4.9000 9.3000 52.600000 0.00 0.5000 30.9000 1.0000 0.0000 0.8000 0.0000 1.3000 Intending to undertake in the next 2 years 5.2000000 1.9000000 6.1000000 70.7000000 5.700000 No Yes 100.0000 Yes 37.540700 -77.436000 USA
2020 49334 City of Richmond, VA Richmond, VA United States of America North America No 230436 POINT (-77.436 37.5407) Yes In progress 5 79 0 1 0 0 1 0 0 2 Yes 8 Intending to undertake in the next 2 years Yes ICLEI Decreased Not intending to undertake Not intending to undertake Fixed level target Yes Intending to undertake in the next 2 years Intending to undertake in the next 2 years 4.9000 9.3000 52.600000 0.00 0.5000 30.9000 1.0000 0.0000 0.8000 0.0000 1.3000 Intending to undertake in the next 2 years 5.2000000 1.9000000 6.1000000 70.7000000 5.700000 No Yes 100.0000 Yes 37.540700 -77.436000 USA
2020 31181 City of Philadelphia Philadelphia United States of America North America No 1555072 POINT (-75.1638 39.9523) Yes Yes 4 48 0 1 0 0 1 0 0 2 Yes 4 Yes Yes GPC Decreased Not intending to undertake Yes Base year emissions (absolute) target Yes Yes Yes 1.9000 17.6000 38.000000 0.00 0.9000 39.7000 0.2000 0.3000 0.4000 1.0000 2.3000 Yes 25.3000000 2.1000000 4.9000000 59.4000000 8.300000 No No 100.0000 Yes 39.952300 -75.163800 USA
2020 50378 Municipalidad de San José San José Costa Rica Latin America No 344851 POINT (9.9326 -84.0796) Yes Yes 4 49 0 0 1 1 0 0 0 2 Do not know 14 Yes Yes Regional or country specific methodology Increased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Not intending to undertake 0.6400 0.0000 0.000000 13.37 69.1800 0.0000 0.8500 0.0000 0.0800 15.8800 98.5100 Not intending to undertake 26.0000000 1.0000000 9.0000000 27.0000000 36.000000 Yes Do not know 100.0000 Yes 9.928100 -84.090700 CRI
2020 50392 Prefeitura de Vitória Vitória Brazil Latin America No 327801 POINT (-40.3776 -20.3338) Intending to incorporate in the next 2 years Yes 13 173 NA NA NA NA NA NA NA NA Yes 3 Yes Yes GPC Increased Do not know Do not know No target Yes Yes Do not know NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No Yes 100.0000 In progress -20.333800 -40.377600 BRA
2020 59151 City of Akureyri Akureyri Iceland Europe No 19025 POINT (-18.1262 65.6885) Yes Yes 2 2 NA NA NA NA NA NA NA NA No 2 Yes Yes GPC Decreased Intending to undertake in the next 2 years Intending to undertake in the next 2 years Fixed level target Intending to undertake in the next 2 years Yes Yes 0.0000 0.0000 0.000000 30.88 69.0700 0.0000 0.0100 0.0000 0.0000 0.0400 99.9900 Not intending to undertake NA NA NA NA NA No Yes 100.0000 Intending to undertake in next 2 years 65.688500 -18.126200 ISL
2020 11315 City of Manchester United Kingdom of Great Britain and Northern Ireland Europe No 563200 Yes In progress 7 48 0 1 1 0 0 0 0 2 Yes 4 Intending to undertake in the next 2 years Yes 2006 IPCC Guidelines Decreased Intending to undertake in the next 2 years Yes Fixed level target Intending to undertake in the next 2 years Yes Yes 4.7000 35.4000 28.200000 0.80 1.3000 22.3000 1.0000 0.0000 1.0000 5.3000 8.4000 Yes 61.1800000 1.9600000 NA 23.6600000 13.200000 No Yes 100.0000 Not intending to undertake 53.479400 -2.245300 GBR
2020 826450 Durham County Council United Kingdom of Great Britain and Northern Ireland Europe Yes 523500 In progress Do not know 2 18 NA NA NA NA NA NA NA NA Yes 1 Intending to undertake in the next 2 years Yes GPC Decreased Do not know Do not know Fixed level target Yes Yes Not intending to undertake 8.9100 4.7900 38.750000 0.00 1.5400 17.7400 0.2900 7.0700 1.4700 19.4400 22.4500 Not intending to undertake NA NA NA NA NA Yes NA 100.0000 Not intending to undertake 54.676489 -1.676534 GBR
2020 826450 Durham County Council United Kingdom of Great Britain and Northern Ireland Europe Yes 523500 In progress Do not know 2 18 NA NA NA NA NA NA NA NA Yes 1 Intending to undertake in the next 2 years Yes GPC Decreased Do not know Do not know Base year emissions (absolute) target Yes Yes Not intending to undertake 8.9100 4.7900 38.750000 0.00 1.5400 17.7400 0.2900 7.0700 1.4700 19.4400 22.4500 Not intending to undertake NA NA NA NA NA Yes NA 100.0000 Not intending to undertake 54.676489 -1.676534 GBR
2020 840529 Ayuntamiento de Victoria (Tamaulipas) Mexico Latin America No 346029 In progress Yes 3 45 NA NA NA NA NA NA NA NA Yes 1 Intending to undertake in the next 2 years In progress 2006 IPCC Guidelines NA NA NA Base year emissions (absolute) target Intending to undertake in the next 2 years Yes Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA Intending to undertake in the next 2 years NA NA NA NA NA No Yes 98.0000 Yes 23.736900 -99.141100 MEX
2020 74671 Kadıköy Turkey Europe Yes 482713 POINT (29.0585 40.98) Do not know Yes 5 109 NA NA NA NA NA NA NA NA Yes 5 Yes Yes 2006 IPCC Guidelines Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Not intending to undertake Yes 0.0000 1.0000 75.000000 0.00 24.0000 0.0000 0.0000 0.0000 0.0000 0.0000 24.0000 Yes 29.0000000 5.0000000 6.0000000 20.0000000 40.000000 No Do not know 100.0000 Not intending to undertake 40.980000 29.058500 TUR
2020 50544 City of Aurora, IL Aurora United States of America North America No 200965 POINT (41.7606 88.3201) Yes Do not know 1 9 NA NA NA NA NA NA NA NA NA 3 Yes Intending to undertake in the next 2 years NA NA NA NA Base year emissions (absolute) target Yes Yes Yes 0.0000 8.0000 56.000000 0.00 0.0000 0.0000 36.0000 0.0000 0.0000 0.0000 0.0000 NA NA NA NA NA NA No Do not know NA Yes 40.768200 -74.234800 USA
2020 50544 City of Aurora, IL Aurora United States of America North America No 200965 POINT (41.7606 88.3201) Yes Do not know 1 9 NA NA NA NA NA NA NA NA NA 3 Yes Intending to undertake in the next 2 years NA NA NA NA Baseline scenario (business as usual) target Yes Yes Yes 0.0000 8.0000 56.000000 0.00 0.0000 0.0000 36.0000 0.0000 0.0000 0.0000 0.0000 NA NA NA NA NA NA No Do not know NA Yes 40.768200 -74.234800 USA
2020 50544 City of Aurora, IL Aurora United States of America North America No 200965 POINT (41.7606 88.3201) Yes Do not know 1 9 NA NA NA NA NA NA NA NA NA 3 Yes Intending to undertake in the next 2 years NA NA NA NA Base year intensity target Yes Yes Yes 0.0000 8.0000 56.000000 0.00 0.0000 0.0000 36.0000 0.0000 0.0000 0.0000 0.0000 NA NA NA NA NA NA No Do not know NA Yes 40.768200 -74.234800 USA
2020 58591 City of Greenbelt, MD United States of America North America No 23000 Yes Do not know 1 NA NA NA NA NA NA NA NA NA NA 1 NA Yes ICLEI Decreased NA Not intending to undertake Base year emissions (absolute) target NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 38.995300 -76.888500 USA
2020 74508 City of Winona, MN Winona United States of America North America No 26594 POINT (-91.6663 44.0554) Yes Intending to undertake in the next 2 years 4 25 NA NA NA NA NA NA NA NA Yes 2 Intending to undertake in the next 2 years Yes NA Decreased Not intending to undertake Do not know Fixed level target Yes Yes Yes 2.0000 23.0000 23.000000 0.00 6.0000 28.0000 0.0000 0.0000 3.0000 15.0000 24.0000 Intending to undertake in the next 2 years NA NA NA NA NA No No 99.9000 Yes 44.055400 -91.666300 USA
2020 8242 City of Helsinki Helsinki Finland Europe No 655395 POINT (24.941 60.1733) Yes Yes 15 71 NA NA NA NA NA NA NA NA Yes 11 Yes Yes GPC Increased In progress Yes Base year emissions (absolute) target Yes Yes Yes 18.1000 7.5000 5.900000 0.00 18.6000 34.7000 0.3000 5.5000 0.3000 9.1000 28.0000 Yes 33.0000000 11.0000000 1.0000000 19.0000000 36.000000 Yes Yes 99.9900 Yes 60.173300 24.941000 FIN
2020 60394 Gobierno Autónomo Municipal de Tarija Tarija Bolivia (Plurinational State of) Latin America No 261188 POINT (-63.4884 -21.2666) Intending to incorporate in the next 2 years Yes 7 64 NA NA NA NA NA NA NA NA NA 7 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA Baseline scenario (business as usual) target Yes Intending to undertake in the next 2 years Do not know NA NA 60.000000 NA 2.0000 NA 38.0000 NA NA NA NA NA NA NA NA NA NA No Yes 90.0000 In progress -21.266600 -63.488400 BOL
2020 74695 Sandnes kommune Norway Europe Yes 79559 Yes Yes 1 25 NA NA NA NA NA NA NA NA Yes 1 Yes Yes Regional or country specific methodology Decreased Do not know Yes No target In progress Yes Intending to undertake in the next 2 years 0.0000 0.0000 0.000000 0.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 Intending to undertake in the next 2 years NA NA NA NA NA No NA 100.0000 In progress 58.850000 5.733300 NOR
2020 70005 Tauragė Taurage Lithuania Europe No 38500 POINT (22.2897 55.2522) In progress Not intending to undertake 1 2 NA NA NA NA NA NA NA NA NA 1 Not intending to undertake Not intending to undertake NA NA NA NA Base year intensity target Do not know Yes Yes NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No No 99.0000 Intending to undertake in next 2 years 55.252200 22.289700 LTU
2020 841269 Municipalidad de Montecarlo Argentina Latin America No 25845 Intending to incorporate in the next 2 years Yes 3 50 NA NA NA NA NA NA NA NA No 19 Yes Yes GPC This is our first year of calculation Not intending to undertake Not intending to undertake Baseline scenario (business as usual) target Yes NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA -30.850000 -64.516700 ARG
2020 54119 City of Palo Alto Palo Alto United States of America North America No 67082 POINT (-122.143 37.4419) Yes Yes 5 73 NA NA NA NA NA NA NA NA Do not know 3 Yes Yes ICLEI Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 11.0000 0.0000 0.000000 0.00 40.0000 0.0000 0.0000 21.0000 17.0000 11.0000 68.0000 Yes NA NA NA NA NA No Yes 100.0000 Yes 37.441900 -122.143000 USA
2020 50568 City of Saskatoon Saskatoon Canada North America No 275242 POINT (-106.67 52.1332) Yes Yes 8 111 NA NA NA NA NA NA NA NA Do not know 3 In progress Yes GPC Increased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 0.0000 31.0000 45.000000 0.00 18.0000 0.0000 0.0000 1.0000 0.0000 5.0000 23.0000 Yes NA NA NA NA NA No Yes 100.0000 Not intending to undertake 52.133200 -106.670000 CAN
2020 73680 Carcarana Argentina Latin America No 16432 NA Intending to undertake in the next 2 years 12 119 NA NA NA NA NA NA NA NA NA 1 Intending to undertake in the next 2 years Yes GPC NA NA Not intending to undertake NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA -34.166700 -58.916700 ARG
2020 3203 City of Chicago Chicago United States of America North America No 2705994 POINT (-87.6298 41.8781) Yes Yes 6 57 NA NA NA NA NA NA NA NA Yes 4 Yes Yes GPC Decreased Do not know Do not know Base year emissions (absolute) target Yes Yes Yes 0.0000 26.0000 34.000000 0.00 2.0000 34.0000 0.0000 1.0000 0.0000 3.0000 5.0000 Yes 28.3000000 1.8000000 5.2000000 59.1000000 5.600000 No Do not know 100.0000 Yes 41.878100 -87.629800 USA
2020 839672 Municipalidad Distrital de La Molina Peru Latin America Yes 140679 In progress Intending to undertake in the next 2 years 2 29 0 0 1 0 0 0 0 1 No 1 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target In progress In progress Do not know NA NA NA NA NA NA NA NA NA NA NA Do not know NA NA NA NA NA Do not know No 100.0000 Intending to undertake in next 2 years -3.785283 -80.063983 PER
2020 54274 Rotorua Lakes Council Rotorua New Zealand Southeast Asia and Oceania No 71877 In progress Yes 18 153 0 1 0 2 0 0 0 3 No 9 In progress Yes GPC This is our first year of calculation Not intending to undertake Yes No target In progress Yes In progress NA NA 22.000000 19.00 56.0000 NA NA NA NA 3.0000 NA In progress NA NA NA NA NA No No 100.0000 Not intending to undertake -38.137800 176.251400 NZL
2020 43928 Canberra Canberra Australia Southeast Asia and Oceania No 427000 POINT (149.124 -35.3075) Yes Yes 4 87 NA NA NA NA NA NA NA NA Yes 3 Yes Yes 2006 IPCC Guidelines Decreased Not intending to undertake Yes Base year emissions (absolute) target Yes Yes Yes 0.0000 0.0000 0.000000 0.00 4.0000 0.0000 0.0000 0.0000 25.0000 71.0000 100.0000 Yes 4.3000000 2.4000000 2.0000000 77.6000000 13.600000 No No 100.0000 Yes -35.307500 149.124000 AUS
2020 848478 Banyuwangi City Indonesia Southeast Asia and Oceania Yes 1745675 In progress Intending to undertake in the next 2 years 2 18 NA NA NA NA NA NA NA NA No 2 In progress Yes 2006 IPCC Guidelines This is our first year of calculation Intending to undertake in the next 2 years Intending to undertake in the next 2 years No target Intending to undertake in the next 2 years In progress Intending to undertake in the next 2 years NA 57.0000 25.000000 NA 12.0000 NA NA NA 6.0000 NA NA Intending to undertake in the next 2 years 0.0000000 0.0000000 3.3000000 96.7000000 0.000000 No No 100.0000 Intending to undertake in next 2 years -8.195000 114.369600 IDN
2020 50358 Gobierno Municipal de Toluca de Lerdo Mexico Latin America No 900855 Yes Yes 3 9 NA NA NA NA NA NA NA NA NA 1 NA NA NA NA NA NA Base year emissions (absolute) target Yes NA In progress NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No NA 92.0000 NA 12.148318 -86.272756 MEX
2020 35993 Singapore Government Singapore Singapore Southeast Asia and Oceania No 5640000 POINT (103.82 1.35208) Yes Yes 5 64 NA NA NA NA NA NA NA NA No 5 Yes Yes 2006 IPCC Guidelines Increased Not intending to undertake Not intending to undertake Fixed level target Yes Yes Yes 2.3900 1.0800 95.740000 0.00 0.0000 0.0000 0.1500 0.0700 0.5700 0.0000 0.5700 Yes 53.0000000 NA 4.0000000 29.0000000 14.000000 No Do not know 100.0000 Yes 1.352080 103.820000 SGP
2020 35993 Singapore Government Singapore Singapore Southeast Asia and Oceania No 5640000 POINT (103.82 1.35208) Yes Yes 5 64 NA NA NA NA NA NA NA NA No 5 Yes Yes 2006 IPCC Guidelines Increased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 2.3900 1.0800 95.740000 0.00 0.0000 0.0000 0.1500 0.0700 0.5700 0.0000 0.5700 Yes 53.0000000 NA 4.0000000 29.0000000 14.000000 No Do not know 100.0000 Yes 1.352080 103.820000 SGP
2020 831230 Municipality of La Marsa La Marsa Tunisia Africa No 98500 POINT (10.3218 36.8725) Yes In progress 2 12 NA NA NA NA NA NA NA NA Yes 1 Not intending to undertake In progress NA NA NA NA No target Intending to undertake in the next 2 years NA In progress NA NA NA NA NA NA NA NA NA NA NA Yes NA NA NA NA NA No NA 95.0000 Not intending to undertake 36.872500 10.321800 TUN
2020 49333 City of Louisville, KY Louisville United States of America North America No 765352 POINT (-85.6784 38.196) Yes Yes 9 176 1 1 1 1 1 0 0 5 Yes 22 Yes Yes GPC Decreased Not intending to undertake Not intending to undertake Baseline scenario (business as usual) target Yes Yes Yes 0.0000 60.0000 37.000000 0.00 3.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3.0000 Yes 0.2200000 0.0600000 2.2200000 97.2800000 0.220000 No Yes 95.5000 Yes 38.196000 -85.678400 USA
2020 58357 City of West Hollywood West Hollywood United States of America North America No 34399 POINT (-118.362 34.09) Yes Yes 4 62 0 1 0 0 0 2 0 3 Yes 4 In progress Yes ICLEI Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 0.0000 0.0000 0.000000 0.00 0.0000 0.0000 0.0000 0.0000 90.0000 10.0000 100.0000 Yes NA NA NA NA NA No Yes 100.0000 Yes 34.090000 -118.362000 USA
2020 31110 Roma Capitale Roma Italy Europe No 2848084 POINT (12.2858 41.53) Yes Yes 8 126 NA NA NA NA NA NA NA NA Do not know 7 Yes Yes GPC Decreased Do not know In progress Base year emissions (absolute) target In progress Yes In progress NA NA NA NA NA NA NA NA NA NA NA In progress 16.4000000 2.2000000 0.8000000 61.5000000 19.100000 Yes Do not know 100.0000 In progress 41.530000 12.285800 ITA
2020 60236 Municipality of Trelleborg Trelleborg Sweden Europe No 45400 POINT (13.1569 55.3751) Yes Yes 3 40 0 1 0 0 0 1 0 2 Yes 3 Yes Yes Regional or country specific methodology Decreased Not intending to undertake Not intending to undertake Fixed level target Yes Yes Yes 14.0000 0.0000 4.000000 0.00 0.0000 40.0000 32.0000 6.0000 1.0000 3.0000 4.0000 Yes NA NA NA NA NA No Yes 100.0000 Yes 55.375100 13.156900 SWE
2020 54696 XIV Ayuntamiento de La Paz La Paz Mexico Latin America No 215178 Yes Yes 1 16 NA NA NA NA NA NA NA NA NA 1 In progress Yes Regional or country specific methodology Increased Yes Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No Yes 90.0000 In progress 21.300000 -100.516700 MEX
2020 63919 City of Saratoga Springs, NY Saratoga Springs United States of America North America No 28212 POINT (-73.8167 43.0333) Yes Intending to undertake in the next 2 years 2 32 NA NA NA NA NA NA NA NA Yes 1 Yes Intending to undertake in the next 2 years NA NA NA NA Fixed level target Intending to undertake in the next 2 years Yes In progress NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No NA 100.0000 Not intending to undertake 43.033300 -73.816700 USA
2020 58485 Abington Township Abington United States of America North America No 55310 POINT (-75.1195 40.1241) Yes Yes 7 76 0 1 0 0 0 1 0 2 Do not know 2 Intending to undertake in the next 2 years Yes Regional or country specific methodology Decreased Not intending to undertake Not intending to undertake Base year intensity target Intending to undertake in the next 2 years Yes Yes 0.0008 35.2944 24.775600 0.00 0.9233 33.7896 0.6259 0.7336 0.1480 3.7088 4.7801 In progress NA NA NA NA NA No Yes 100.0000 Intending to undertake in next 2 years 40.124100 -75.119500 USA
2020 54082 City of Hollywood, FL Hollywood United States of America North America No 154817 POINT (-80.1495 26.0112) In progress Yes 7 97 NA NA NA NA NA NA NA NA Yes 5 Yes Intending to undertake in the next 2 years NA NA NA NA Base year emissions (absolute) target Yes In progress Yes 0.0000 2.1000 72.300000 0.00 0.0000 22.3000 0.3000 1.5000 1.5000 0.0000 1.5000 Yes NA NA NA NA NA No No 100.0000 In progress 26.011200 -80.149500 USA
2020 35877 City of Pittsburgh Pittsburgh United States of America North America No 301048 POINT (-79.9959 40.4406) Yes Yes 6 109 NA NA NA NA NA NA NA NA Yes 2 In progress In progress ICLEI NA NA NA Base year emissions (absolute) target Yes Yes Yes NA 22.0000 8.300000 NA 0.3000 69.4000 NA NA NA NA NA Yes 17.5000000 18.0000000 0.0000000 54.5000000 10.000000 No Yes 100.0000 Yes 40.440600 -79.995900 USA
2020 832838 Town of Wellfleet Wellfleet United States of America North America No 3500 POINT (-70.031 41.9305) In progress Yes 5 52 NA NA NA NA NA NA NA NA NA 1 NA Yes GPC NA NA Not intending to undertake NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 41.930500 -70.031000 USA
2020 35475 City of Calgary Calgary Canada North America No 1285711 POINT (-114.071 51.0486) Yes Yes 14 209 NA NA NA NA NA NA NA NA Yes 11 Yes Yes GPC Increased Not intending to undertake Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes 2.4000 42.0500 47.910000 NA 2.2600 NA NA 0.4000 0.0260 4.9500 NA In progress 9.0000000 1.3000000 0.3000000 73.0000000 16.400000 No Yes 100.0000 Yes 51.048600 -114.071000 CAN
2020 35905 Corporation of Chennai Chennai India South and West Asia No 7920000 POINT (80.2425 13.0992) Yes Yes 1 16 NA NA NA NA NA NA NA NA Yes 2 Yes Yes GPC Decreased Intending to undertake in the next 2 years Yes Base year emissions (absolute) target Yes Yes Yes 0.6000 52.5000 3.400000 0.00 4.6000 5.9000 0.0000 24.2000 1.2000 7.6000 13.4000 Yes 31.0000000 5.0000000 27.0000000 4.0000000 26.000000 Yes Yes 100.0000 In progress 13.099200 80.242500 IND
2020 54402 City of Lahti Lahti Finland Europe No 119937 POINT (25.65 60.9833) Yes Yes 4 95 NA NA NA NA NA NA NA NA No 4 Yes Yes 2006 IPCC Guidelines Decreased Intending to undertake in the next 2 years In progress Base year emissions (absolute) target Yes Yes Yes 19.0000 9.0000 6.000000 0.00 19.0000 32.0000 0.3000 5.5000 0.2000 9.0000 28.2000 Yes 6.0000000 14.5000000 3.0000000 51.5000000 25.000000 No Yes 100.0000 Not intending to undertake 60.983300 25.650000 FIN
2020 54402 City of Lahti Lahti Finland Europe No 119937 POINT (25.65 60.9833) Yes Yes 4 95 NA NA NA NA NA NA NA NA No 4 Yes Yes 2006 IPCC Guidelines Decreased Intending to undertake in the next 2 years In progress Base year intensity target Yes Yes Yes 19.0000 9.0000 6.000000 0.00 19.0000 32.0000 0.3000 5.5000 0.2000 9.0000 28.2000 Yes 6.0000000 14.5000000 3.0000000 51.5000000 25.000000 No Yes 100.0000 Not intending to undertake 60.983300 25.650000 FIN
2020 35898 Greater Manchester Manchester United Kingdom of Great Britain and Northern Ireland Europe No 2835686 POINT (-2.15783 53.4576) Yes Yes 7 66 NA NA NA NA NA NA NA NA NA 4 Yes Yes GPC Decreased Intending to undertake in the next 2 years Yes Base year emissions (absolute) target Yes Yes Yes 4.7000 35.4000 28.200000 0.80 1.3000 22.3000 1.0000 0.0000 1.0000 5.3000 8.4000 NA NA NA NA NA NA NA Yes 100.0000 Not intending to undertake 53.457600 -2.157830 GBR
2020 36470 Comune della Spezia La Spezia Italy Europe No 93870 POINT (9.83632 44.111) Yes In progress 1 4 NA NA NA NA NA NA NA NA NA 1 In progress Intending to undertake in the next 2 years NA NA NA NA Base year emissions (absolute) target In progress Yes In progress NA NA 43.380000 NA NA NA NA NA NA NA NA NA NA NA NA NA NA Yes Yes 100.0000 Yes 44.111000 9.836320 ITA
2020 50678 Município de Évora Évora Portugal Europe No 56596 Intending to incorporate in the next 2 years Yes 3 30 0 0 1 0 0 0 0 1 Yes 3 Yes NA NA NA NA NA Base year emissions (absolute) target NA In progress Yes NA 1.2480 5.304000 NA NA NA 9.5600 NA NA NA NA NA NA NA NA NA NA No No 91.0000 Not intending to undertake 38.416700 -7.533300 PRT
2020 826103 Ayuntamiento de Casimiro Castillo Casimiro Castillo Mexico Latin America No 21475 POINT (-104.436 19.6031) In progress Yes 1 25 NA NA NA NA NA NA NA NA NA 1 Yes In progress Regional or country specific methodology NA NA NA No target Yes NA Do not know NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 19.603100 -104.436000 MEX
2020 73650 Armstrong Argentina Latin America No 11484 NA Intending to undertake in the next 2 years 36 206 NA NA NA NA NA NA NA NA NA 1 Intending to undertake in the next 2 years Yes GPC NA NA Do not know NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA -34.800000 -58.383300 ARG
2020 58530 City of Northampton, MA Northampton United States of America North America No 28549 POINT (-72.6144 42.3048) Yes Yes 3 75 NA NA NA NA NA NA NA NA Yes 5 Yes Yes GPC This is our first year of calculation Not intending to undertake Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes 0.0000 3.1000 40.000000 0.00 2.9000 10.8000 8.6000 24.3000 3.2000 7.1000 13.2000 NA NA NA NA NA NA NA NA 100.0000 Not intending to undertake 42.304800 -72.614400 USA
2020 73667 San Rafael de Heredia Costa Rica Latin America Yes 55269 In progress Yes 4 72 0 2 0 0 0 0 0 2 Do not know 2 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years Intending to undertake in the next 2 years Not intending to undertake 14.0000 1.0000 0.000000 22.00 14.0000 0.0000 47.0000 0.0000 1.0000 1.0000 38.0000 Not intending to undertake 2.4300000 0.0000000 0.0000000 97.5600000 0.000000 No No 100.0000 Intending to undertake in next 2 years 9.998500 -84.116900 CRI
2020 60399 Municipalidad de Miraflores Miraflores Peru Latin America No 99337 POINT (-71.5366 -16.3994) Yes Yes 4 35 NA NA NA NA NA NA NA NA No 5 In progress In progress GPC NA NA NA No target In progress Yes In progress NA NA 45.000000 NA 47.0000 NA NA NA 5.0000 3.0000 NA NA NA NA NA NA NA No NA 100.0000 In progress -16.399400 -71.536600 PER
2020 74672 Bursa Nilüfer Municipality Turkey Europe Yes 466000 POINT (28 40) Yes Intending to undertake in the next 2 years 1 1 0 0 0 1 0 0 0 1 No 1 Intending to undertake in the next 2 years Yes 2006 IPCC Guidelines Increased Do not know Do not know Base year intensity target Yes Yes In progress NA 36.0000 11.000000 3.00 20.0000 NA NA 25.0000 3.0000 2.0000 28.0000 In progress NA NA NA NA NA No No 100.0000 Yes 40.000000 28.000000 TUR
2020 50565 City of Toledo Toledo United States of America North America No 287208 POINT (-83.5552 41.6639) Yes Yes 1 20 NA NA NA NA NA NA NA NA NA 1 Yes Intending to undertake in the next 2 years NA NA NA NA Base year intensity target Yes Yes NA 0.0000 59.0000 40.000000 0.00 0.0000 0.0000 0.0000 0.0000 1.0000 0.0000 1.0000 NA NA NA NA NA NA No NA 100.0000 NA 41.663900 -83.555200 USA
2020 10495 City of Las Vegas Las Vegas United States of America North America No 675971 POINT (-115.14 36.1699) Yes Yes 6 109 0 0 1 0 0 0 0 1 No 20 In progress Yes City specific methodology Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target In progress In progress Yes 0.3800 0.0000 70.900000 11.90 1.5400 0.0000 0.0000 1.9100 11.3600 2.0100 26.8100 Yes 4.0000000 2.6000000 3.8000000 88.1000000 1.500000 No Yes 99.0000 Yes 36.169900 -115.140000 USA
2020 50386 Prefeitura de Cuiabá Cuiabá Brazil Latin America No 580489 POINT (-52.2663 -15.882) Yes Intending to undertake in the next 2 years 2 45 NA NA NA NA NA NA NA NA NA 1 NA Intending to undertake in the next 2 years NA NA NA NA NA Yes NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA -15.882000 -52.266300 BRA
2020 50359 Gobierno Municipal de León de los Aldamas León de los Aldamas Mexico Latin America No 1578626 POINT (-101.684 21.1221) Yes Yes 3 47 NA NA NA NA NA NA NA NA Yes 13 Yes Yes 2006 IPCC Guidelines Decreased Yes Yes Base year emissions (absolute) target Yes Yes Yes 6.3500 1.2200 84.930000 0.00 0.0000 0.0000 4.6300 0.0000 2.8700 0.0000 2.8700 Yes 1.3000000 2.0000000 2.0000000 89.3000000 5.400000 Yes Yes 97.0000 Intending to undertake in next 2 years 21.122100 -101.684000 MEX
2020 60216 City of Växjö Växjö Sweden Europe No 92567 POINT (14.8091 56.8777) Yes Yes 6 64 NA NA NA NA NA NA NA NA Yes 4 Yes Yes GPC Stayed the same In progress Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 37.4000 0.7000 0.300000 0.00 25.3000 25.9000 0.1000 2.9000 0.6000 6.8000 32.7000 Yes 6.0000000 19.0000000 NA 62.0000000 13.000000 No No 100.0000 In progress 56.877700 14.809100 SWE
2020 60216 City of Växjö Växjö Sweden Europe No 92567 POINT (14.8091 56.8777) Yes Yes 6 64 NA NA NA NA NA NA NA NA Yes 4 Yes Yes GPC Stayed the same In progress Not intending to undertake Base year intensity target Yes Yes Yes 37.4000 0.7000 0.300000 0.00 25.3000 25.9000 0.1000 2.9000 0.6000 6.8000 32.7000 Yes 6.0000000 19.0000000 NA 62.0000000 13.000000 No No 100.0000 In progress 56.877700 14.809100 SWE
2020 60349 Prefeitura de São Leopoldo São Leopoldo Brazil Latin America No 236835 POINT (-51.1493 -29.761) Yes In progress 3 48 0 2 0 0 0 0 0 2 Yes 4 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years Yes In progress 1.0000 13.0000 0.000000 0.00 80.0000 0.0000 0.0000 0.0000 1.0000 5.0000 86.0000 In progress 49.0000000 5.0000000 9.0000000 32.0000000 10.000000 No Yes 99.0000 Yes -29.761000 -51.149300 BRA
2020 839665 Ayuntamiento de Celaya Mexico Latin America No 494304 POINT (-100.812 20.5222) Yes Yes 3 44 NA NA NA NA NA NA NA NA Yes 5 In progress Yes 2006 IPCC Guidelines Increased Yes Yes Base year emissions (absolute) target Yes Yes Yes NA NA NA NA NA NA NA NA NA NA NA Do not know 25.0000000 7.0000000 5.0000000 58.0000000 5.000000 No Yes 96.8500 Intending to undertake in next 2 years 20.522200 -100.812000 MEX
2020 54538 Bath and North East Somerset Bath United Kingdom of Great Britain and Northern Ireland Europe No 192106 Yes Yes 6 65 0 1 0 0 0 0 0 1 Yes 3 Intending to undertake in the next 2 years Yes GPC Do not know Yes Not intending to undertake Fixed level target Intending to undertake in the next 2 years Yes Yes 11.5000 2.1000 40.600000 0.00 1.8000 17.3000 0.3000 2.5000 0.0000 23.9000 25.7000 Not intending to undertake NA NA NA NA NA Yes NA NA Yes 51.356324 -2.486661 GBR
2020 54268 Dunedin City Council New Zealand Southeast Asia and Oceania Yes 131100 In progress Yes NA NA NA NA NA NA NA NA NA NA NA 1 NA Yes GPC Increased Do not know Not intending to undertake NA NA NA NA 6.0000 6.0000 19.000000 0.00 11.0000 0.0000 33.0000 0.0000 12.5000 12.5000 36.0000 NA NA NA NA NA NA NA NA NA NA -45.866700 170.500000 NZL
2020 826396 Munícipio de Sintra Sintra Portugal Europe No 391402 POINT (-9.38811 38.7984) Yes Yes 5 115 NA NA NA NA NA NA NA NA Do not know 11 Yes Yes 2006 IPCC Guidelines Decreased Not intending to undertake Yes Base year emissions (absolute) target Yes Yes Intending to undertake in the next 2 years 6.0000 37.0000 23.000000 0.00 16.0000 0.0000 0.0000 2.0000 1.0000 15.0000 32.0000 In progress NA NA NA NA NA Yes Yes 100.0000 Yes 38.798400 -9.388110 PRT
2020 74466 Village of South Barrington, IL South Barrington United States of America North America No 4565 POINT (42.0736 88.148) In progress Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA 1 In progress Not intending to undertake NA NA NA NA No target Intending to undertake in the next 2 years Intending to undertake in the next 2 years Intending to undertake in the next 2 years 0.0000 50.0000 50.000000 0.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 NA NA NA NA NA NA NA Do not know 29.0000 Intending to undertake in next 2 years 44.462200 -73.220300 USA
2020 60410 Municipalidad de Peñalolén Peñalolén Chile Latin America No 241599 POINT (-70.5302 -33.454) Yes Yes 10 65 NA NA NA NA NA NA NA NA Yes 16 Yes Yes NA This is our first year of calculation Yes Yes Base year emissions (absolute) target Yes Yes Yes 1.8000 21.0000 19.200000 0.20 27.0000 0.0000 11.4000 0.0000 10.8000 8.6000 46.6000 Yes 33.0000000 4.0000000 2.0000000 26.0000000 35.000000 No Yes 99.0000 Intending to undertake in next 2 years -33.454000 -70.530200 CHL
2020 63601 Township of Maplewood, NJ Maplewood United States of America North America No 25380 POINT (-74.27 40.73) Intending to incorporate in the next 2 years Not intending to undertake 3 44 NA NA NA NA NA NA NA NA Yes 3 Intending to undertake in the next 2 years Yes Regional or country specific methodology Decreased Not intending to undertake Not intending to undertake No target In progress In progress Intending to undertake in the next 2 years 1.7000 15.5000 39.600000 0.00 2.0000 38.9000 0.5000 0.3000 0.5000 1.0000 3.5000 In progress NA NA NA NA NA No No 100.0000 In progress 40.730000 -74.270000 USA
2020 60388 Municipalidad Provincial de Chiclayo Peru Latin America No 630387 In progress In progress 4 59 2 2 0 0 0 0 1 5 Yes 4 In progress Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years In progress Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No No 60.0000 Intending to undertake in next 2 years -3.785283 -80.063983 PER
2020 54614 Prefeitura da Cidade de São José do Rio Preto São José do Rio Preto Brazil Latin America No 456245 POINT (-49.3762 -20.8118) Yes Yes 5 35 NA NA NA NA NA NA NA NA No 9 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years Yes Do not know 0.0000 0.0000 0.000000 0.00 100.0000 0.0000 0.0000 0.0000 0.0000 0.0000 100.0000 Intending to undertake in the next 2 years NA NA NA NA NA No Yes 99.0000 Yes -20.811800 -49.376200 BRA
2020 54687 Prefeitura Municipal de São José dos Campos São José dos Campos Brazil Latin America No 721944 POINT (-45.8783 -23.1848) Yes In progress 6 84 NA NA NA NA NA NA NA NA Yes 6 Intending to undertake in the next 2 years Yes GPC Do not know Do not know Do not know No target Intending to undertake in the next 2 years Yes Do not know 8.2000 3.6000 10.500000 0.00 65.2000 2.5000 3.0000 0.1000 0.1000 6.8000 72.1000 Do not know NA NA NA NA NA Do not know Yes 100.0000 Yes -23.184800 -45.878300 BRA
2020 834373 Town of York, ME United States of America North America Yes 13151 Intending to incorporate in the next 2 years In progress 2 24 0 1 0 0 0 1 0 2 Do not know 1 Intending to undertake in the next 2 years Yes GPC This is our first year of calculation Not intending to undertake Not intending to undertake Base year emissions (absolute) target Intending to undertake in the next 2 years Intending to undertake in the next 2 years Not intending to undertake 6.0400 0.5000 48.500000 0.00 8.9000 30.5000 0.2000 0.0600 1.7000 3.6000 14.2000 Do not know NA NA NA NA NA Do not know Do not know 100.0000 Yes 40.694300 -73.924900 USA
2020 35863 eThekwini Municipality Durban South Africa Africa No 3918863 POINT (31.0218 -29.8587) Yes Yes 3 41 NA NA NA NA NA NA NA NA Yes 2 Yes Yes GPC Increased Intending to undertake in the next 2 years Not intending to undertake Base year emissions (absolute) target Yes Intending to undertake in the next 2 years Yes 0.0000 88.0000 2.000000 0.00 0.0000 5.0000 0.0000 0.0000 2.0000 3.0000 5.0000 Yes 12.7000000 0.0100000 28.2000000 33.0000000 26.100000 No No 72.0000 Yes -29.858700 31.021800 ZAF
2020 31175 City of Paris Paris France Europe No 2210875 POINT (2.35222 48.8566) Yes Yes 10 95 1 1 1 1 2 1 0 7 Yes 15 Yes Yes GPC Decreased Yes Yes Base year emissions (absolute) target Yes Yes Yes 1.7000 1.1000 5.700000 0.00 12.4000 71.7000 0.3000 0.0000 2.0000 5.1000 19.5000 Yes 31.0000000 5.0000000 1.0000000 11.0000000 52.000000 Yes Yes 100.0000 Yes 48.856600 2.352220 FRA
2020 36285 Comune di Firenze Firenze Italy Europe No 378839 POINT (11.2558 43.7696) Yes Yes 5 57 NA NA NA NA NA NA NA NA Yes 5 Yes Yes 2006 IPCC Guidelines Decreased Do not know Yes Base year emissions (absolute) target Yes Yes Yes NA NA NA NA NA NA NA NA NA NA NA Yes 18.3000000 7.5000000 NA 55.2000000 19.000000 Yes Yes 100.0000 Yes 43.769600 11.255800 ITA
2020 55324 Município de Guimarães Guimarães Portugal Europe No 152792 POINT (-8.29224 41.4443) Yes Yes 6 130 0 0 0 1 0 0 0 1 Yes 18 Yes Yes 2006 IPCC Guidelines Decreased Do not know Yes Base year emissions (absolute) target Yes Yes Yes NA 54.2600 5.830000 NA 27.6600 0.0000 0.0000 NA 12.2500 NA NA Yes 13.0700000 0.0500000 0.4000000 65.0600000 21.420000 No Yes 97.7000 In progress 41.444300 -8.292240 PRT
2020 826208 Junta Intermunicipal de Medio Ambiente de Sierra Occidental y Costa (JISOC) JISOC Mexico Latin America No 344325 POINT (-104.783 20.517) Yes Yes 1 16 NA NA NA NA NA NA NA NA Yes 1 Yes Yes ICLEI NA NA NA Fixed level target Do not know Yes Yes NA NA NA NA NA NA NA NA NA NA NA Yes NA NA NA NA NA NA NA NA NA 20.517000 -104.783000 MEX
2020 73413 Commune de Cocody Cocody Côte d’Ivoire Africa No 800000 POINT (-3.9674 5.3602) Yes Yes 2 50 NA NA NA NA NA NA NA NA Yes 4 Yes Yes 2006 IPCC Guidelines Decreased In progress In progress Baseline scenario (business as usual) target Yes Yes Yes 2.0000 15.0000 13.000000 0.00 45.0000 0.0000 20.0000 0.0000 5.0000 0.0000 50.0000 Yes NA NA NA NA NA No No 80.0000 In progress 5.360200 -3.967400 CIV
2020 73413 Commune de Cocody Cocody Côte d’Ivoire Africa No 800000 POINT (-3.9674 5.3602) Yes Yes 2 50 NA NA NA NA NA NA NA NA Yes 4 Yes Yes 2006 IPCC Guidelines Decreased In progress In progress Base year emissions (absolute) target Yes Yes Yes 2.0000 15.0000 13.000000 0.00 45.0000 0.0000 20.0000 0.0000 5.0000 0.0000 50.0000 Yes NA NA NA NA NA No No 80.0000 In progress 5.360200 -3.967400 CIV
2020 73413 Commune de Cocody Cocody Côte d’Ivoire Africa No 800000 POINT (-3.9674 5.3602) Yes Yes 2 50 NA NA NA NA NA NA NA NA Yes 4 Yes Yes 2006 IPCC Guidelines Decreased In progress In progress Base year intensity target Yes Yes Yes 2.0000 15.0000 13.000000 0.00 45.0000 0.0000 20.0000 0.0000 5.0000 0.0000 50.0000 Yes NA NA NA NA NA No No 80.0000 In progress 5.360200 -3.967400 CIV
2020 43975 Municipalidad de Magdalena del Mar Magdalena del Mar Peru Latin America No 60290 POINT (-77.067 -12.0917) In progress Yes 3 57 NA NA NA NA NA NA NA NA Do not know 3 Intending to undertake in the next 2 years Yes GPC Do not know Yes Do not know Base year emissions (absolute) target In progress Yes Intending to undertake in the next 2 years NA NA 50.000000 NA 30.0000 NA NA NA 5.0000 10.0000 NA Intending to undertake in the next 2 years NA NA NA NA NA No Yes 100.0000 Intending to undertake in next 2 years -12.091700 -77.067000 PER
2020 831616 Commune de Tsévié Tsévié Togo Africa No 160430 POINT (1.21333 6.42611) In progress In progress NA NA NA NA NA NA NA NA NA NA NA 1 In progress Yes NA NA NA Yes Base year emissions (absolute) target In progress In progress Yes NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No NA NA Yes 6.426110 1.213330 TGO
2020 73637 Steve Tshwete South Africa Africa No 278749 Intending to incorporate in the next 2 years In progress 3 34 0 0 1 0 0 0 0 1 Yes 2 Intending to undertake in the next 2 years Yes GPC Increased In progress In progress No target Do not know Intending to undertake in the next 2 years Do not know NA NA NA NA NA NA NA NA NA NA NA Do not know NA NA NA NA NA No Do not know 81.9000 Yes -25.830874 29.557796 ZAF
2020 73666 Cuyahoga County United States of America North America No 1241718 Yes Yes 9 110 0 1 0 0 0 0 1 2 Yes 11 Yes Yes ICLEI Increased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes In progress NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No 100.0000 NA 41.164100 -81.520700 USA
2020 848474 Richmond Council United Kingdom of Great Britain and Northern Ireland Europe Yes 199100 POINT (-0.32574 51.448) Yes In progress 9 26 0 1 1 0 0 0 0 2 Yes 7 Yes Yes GPC This is our first year of calculation Yes Yes No target Yes In progress Not intending to undertake 8.8100 3.1100 26.760000 0.00 2.2800 11.9000 0.1700 5.8300 13.1600 27.9800 43.4200 Not intending to undertake 23.3000000 5.0000000 2.0000000 36.2000000 33.500000 Yes Yes 100.0000 Not intending to undertake 51.448000 -0.325740 GBR
2020 46514 City of Porto Porto Portugal Europe No 237591 POINT (-8.6291 41.1579) Yes Yes 5 69 NA NA NA NA NA NA NA NA Do not know 4 Yes Yes City specific methodology Increased Do not know Do not know Base year emissions (absolute) target Yes Yes Yes 5.4200 24.6800 31.790000 0.36 12.8400 0.0000 2.1500 0.4800 1.6700 20.6100 35.4800 Do not know 18.1000000 0.4000000 1.3000000 49.1000000 31.200000 No Yes 100.0000 Intending to undertake in next 2 years 41.157900 -8.629100 PRT
2020 49360 City of Tshwane Pretoria - Tshwane South Africa Africa No 3306198 POINT (28.1881 -25.7461) Yes Yes 5 95 0 1 0 1 0 1 0 3 No 1 Yes Yes GPC Do not know Yes Yes No target In progress Yes In progress NA NA NA NA NA NA NA NA NA NA NA In progress 8.7000000 NA 24.2000000 33.1000000 29.300000 No No 86.0000 In progress -25.746100 28.188100 ZAF
2020 57616 City of Lake Forest, IL Lake Forest United States of America North America No 19446 POINT (-87.8406 42.2586) Yes Intending to undertake in the next 2 years 3 32 NA NA NA NA NA NA NA NA NA 3 Yes Yes NA Do not know Do not know Do not know Base year emissions (absolute) target Yes Yes Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No No 100.0000 Yes 42.258600 -87.840600 USA
2020 63616 Abasan Al-Kabira Municipality Abasan Al-Kabira State of Palestine Middle East No 31000 POINT (34.344 31.3231) Yes Yes 6 51 NA NA NA NA NA NA NA NA NA 2 Yes Yes 2006 IPCC Guidelines NA NA Yes Base year emissions (absolute) target Yes Yes Yes 5.0000 17.0000 18.000000 NA NA NA 50.0000 NA 10.0000 NA NA NA NA NA NA NA NA NA NA NA NA 31.323100 34.344000 PSE
2020 845307 Zarcero Costa Rica Latin America Yes 12205 Yes In progress 5 69 0 2 0 0 0 1 0 3 Yes 4 In progress Yes Regional or country specific methodology This is our first year of calculation Not intending to undertake Not intending to undertake No target Yes Yes Not intending to undertake 0.6400 0.0000 0.000000 13.37 69.1800 0.0000 0.0000 0.8500 0.0800 15.8800 98.5100 Not intending to undertake NA NA NA NA NA No No 100.0000 In progress 10.218591 -84.406644 CRI
2020 60603 City of Prince George, BC Prince George Canada North America No 74003 POINT (-122.75 53.9171) Yes Yes 3 46 NA NA NA NA NA NA NA NA NA 3 Yes Yes NA Increased Do not know Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Intending to undertake in the next 2 years NA NA NA NA NA 100.0000 NA NA NA NA NA NA NA NA NA NA NA NA NA NA 100.0000 NA 53.917100 -122.750000 CAN
2020 59633 City of Santa Cruz, CA Santa Cruz, CA United States of America North America No 64608 POINT (-122.031 36.9741) Yes Yes 7 109 1 2 0 0 0 0 0 3 Yes 2 Yes Yes GPC Decreased Intending to undertake in the next 2 years Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 0.0000 0.0000 12.000000 0.00 58.0000 0.0000 0.0000 0.0000 20.0000 10.0000 88.0000 Yes NA NA NA NA NA No Yes 100.0000 Yes 36.974100 -122.031000 USA
2020 50550 City of Buffalo Buffalo, NY United States of America North America No 258612 POINT (-78.8784 42.8864) Yes In progress 6 25 NA NA NA NA NA NA NA NA NA 6 NA NA NA NA NA NA No target NA Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 42.886400 -78.878400 USA
2020 832097 Município de Lagos Portugal Europe No 30374 Yes Yes 2 32 NA NA NA NA NA NA NA NA No 2 Yes Intending to undertake in the next 2 years NA NA NA NA NA Yes Intending to undertake in the next 2 years Intending to undertake in the next 2 years 0.0000 0.0000 12.703000 0.00 45.0000 0.0000 41.9000 0.3970 0.0000 0.0000 45.0000 Intending to undertake in the next 2 years 13.0000000 10.0000000 2.0000000 65.0000000 10.000000 Yes No 100.0000 Intending to undertake in next 2 years 41.400000 -7.950000 PRT
2020 52638 Prefeitura de Aracaju Aracaju Brazil Latin America No 657013 POINT (-37.0731 -10.9472) Intending to incorporate in the next 2 years Intending to undertake in the next 2 years 4 39 0 1 0 1 0 2 0 4 No 6 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years Yes Intending to undertake in the next 2 years NA NA NA NA 100.0000 NA NA NA NA NA NA Do not know 0.0000000 NA NA NA NA No Yes 99.6000 Yes -10.947200 -37.073100 BRA
2020 35880 Municipality of Porto Alegre Porto Alegre Brazil Latin America No 1479101 POINT (51 30) Intending to incorporate in the next 2 years Intending to undertake in the next 2 years 4 100 NA NA NA NA NA NA NA NA Yes 3 Intending to undertake in the next 2 years Yes GPC Do not know Intending to undertake in the next 2 years Not intending to undertake No target Intending to undertake in the next 2 years Yes Intending to undertake in the next 2 years 0.0840 0.0200 0.083000 NA 0.6040 0.0110 0.0510 0.0450 0.0160 0.0870 NA Intending to undertake in the next 2 years 0.3750000 0.0060000 0.0060000 0.3880000 0.225000 No Yes 99.5000 Yes -30.032800 -51.230000 BRA
2020 54625 Prefeitura de Londrina Londrina Brazil Latin America No 558439 POINT (-51.1505 -23.3356) Yes Intending to undertake in the next 2 years 3 66 NA NA NA NA NA NA NA NA Yes 3 In progress Yes GPC Increased Do not know Do not know No target Do not know Yes Do not know 0.0000 0.0000 0.000000 0.00 100.0000 0.0000 0.0000 0.0000 0.0000 0.0000 100.0000 In progress 1.0000000 1.0000000 1.0000000 61.0000000 37.000000 No Do not know 90.6600 Yes -23.335600 -51.150500 BRA
2020 74643 Dijon métropole France Europe Yes 257933 Yes Yes 3 27 NA NA NA NA NA NA NA NA Yes 9 Intending to undertake in the next 2 years Yes 2006 IPCC Guidelines Decreased Do not know Yes Base year emissions (absolute) target Yes Yes Yes 1.8000 0.3000 7.200000 0.00 11.2000 70.6000 0.4000 0.0000 2.2000 6.3000 19.7000 Yes 14.0000000 2.0000000 1.0000000 53.0000000 30.000000 No Yes 100.0000 In progress 47.316700 5.016700 FRA
2020 58797 Hørsholm Kommune Hørsholm Denmark Europe No 25091 POINT (12.5049 55.8835) Yes Yes 4 36 NA NA NA NA NA NA NA NA No 5 Yes Yes GPC Increased Not intending to undertake Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Not intending to undertake 13.2000 18.7000 6.000000 0.00 11.4000 3.9000 0.8000 4.0000 3.5000 38.5000 53.4000 In progress 6.0000000 9.0000000 1.0000000 80.0000000 4.000000 No Yes 100.0000 Yes 55.883500 12.504900 DNK
2020 60229 Municipality of Arendal Arendal Norway Europe No 44999 POINT (8.77245 58.4618) Yes Yes 5 32 NA NA NA NA NA NA NA NA No 2 Yes Yes 2006 IPCC Guidelines Increased In progress Yes Base year emissions (absolute) target Yes Yes Not intending to undertake 0.0000 0.0000 0.000000 0.00 98.0000 0.0000 0.0000 2.0000 0.0000 0.0000 98.0000 In progress 4.0000000 4.0000000 2.0000000 75.0000000 17.000000 No Yes 100.0000 Yes 58.461800 8.772450 NOR
2020 60229 Municipality of Arendal Arendal Norway Europe No 44999 POINT (8.77245 58.4618) Yes Yes 5 32 NA NA NA NA NA NA NA NA No 2 Yes Yes 2006 IPCC Guidelines Increased In progress Yes Base year intensity target Yes Yes Not intending to undertake 0.0000 0.0000 0.000000 0.00 98.0000 0.0000 0.0000 2.0000 0.0000 0.0000 98.0000 In progress 4.0000000 4.0000000 2.0000000 75.0000000 17.000000 No Yes 100.0000 Yes 58.461800 8.772450 NOR
2020 60264 Prefeitura de Botucatu Botucatu Brazil Latin America No 144000 POINT (-48.4441 -22.8852) Yes In progress 3 34 NA NA NA NA NA NA NA NA NA 1 Not intending to undertake Intending to undertake in the next 2 years NA NA NA NA No target In progress Yes Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No Yes 100.0000 In progress -22.885200 -48.444100 BRA
2020 31174 Moscow Government Moscow Russian Federation Europe No 12678079 POINT (37.6173 55.7558) Yes Yes 4 56 0 1 0 0 0 0 0 1 Yes 3 In progress Yes 2006 IPCC Guidelines Decreased Intending to undertake in the next 2 years In progress Base year emissions (absolute) target Yes Yes Intending to undertake in the next 2 years 0.2000 0.0000 99.250000 NA 0.1200 0.0000 0.0000 0.3800 0.0200 NA NA Yes 64.9400000 0.0700000 4.9800000 30.0000000 NA Yes No 100.0000 Yes 55.755800 37.617300 RUS
2020 36469 Comune dell’Aquila L’Aquila Italy Europe No 69710 POINT (13.3995 42.3505) Yes In progress 5 48 NA NA NA NA NA NA NA NA Yes 4 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA Base year emissions (absolute) target Intending to undertake in the next 2 years In progress Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA In progress 0.2000000 NA 0.0000000 90.0000000 NA No Do not know 100.0000 Intending to undertake in next 2 years 42.350500 13.399500 ITA
2020 60073 Wolverhampton City Council Wolverhampton United Kingdom of Great Britain and Northern Ireland Europe No 265809 Yes Intending to undertake in the next 2 years 2 5 0 1 0 0 0 0 0 1 No 3 Yes Yes GPC This is our first year of calculation Yes Yes Fixed level target In progress Yes Not intending to undertake 10.0000 2.5000 38.000000 0.00 2.0000 17.0000 0.5000 7.0000 2.0000 21.0000 25.0000 Intending to undertake in the next 2 years 15.0000000 2.0000000 7.0000000 68.0000000 8.000000 No Do not know 100.0000 Not intending to undertake 52.583300 -2.133300 GBR
2020 59969 City of Mandurah Australia Southeast Asia and Oceania No 92594 Do not know Yes NA NA NA NA NA NA NA NA NA NA Do not know 1 Yes Yes GPC This is our first year of calculation Do not know Not intending to undertake No target Do not know In progress Yes NA 52.0000 11.000000 10.00 NA NA 21.0000 4.0000 2.0000 NA NA Not intending to undertake NA NA NA NA NA No No 100.0000 In progress -32.528900 115.723100 AUS
2020 36037 Santiago de Cali Santiago de Cali Colombia Latin America No 2470852 POINT (-76.532 3.45164) Yes In progress 5 101 NA NA NA NA NA NA NA NA No 1 Yes Yes 2006 IPCC Guidelines Do not know Intending to undertake in the next 2 years Intending to undertake in the next 2 years Fixed level target Yes Yes Intending to undertake in the next 2 years NA NA NA NA 95.0000 NA NA NA 5.0000 NA NA Intending to undertake in the next 2 years 1.1000000 0.0000000 2.1000000 96.8000000 0.000000 No Yes 99.0000 Yes 3.451640 -76.532000 COL
2020 60361 Prefeitura de Tangará da Serra Tangará da Serra Brazil Latin America No 83431 POINT (-57.4858 -14.6194) Do not know Do not know 2 50 NA NA NA NA NA NA NA NA Do not know 1 Do not know Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years Do not know Do not know 8.2000 2.9000 9.100000 0.00 68.1000 2.6000 3.7000 0.0000 0.0000 5.4000 73.5000 Do not know 65.0000000 1.0000000 0.5000000 94.0000000 1.000000 Do not know Do not know 100.0000 In progress -14.619400 -57.485800 BRA
2020 35893 City of Dar es Salaam Dar es Salaam United Republic of Tanzania Africa No 6041000 POINT (39.2083 -6.79235) Yes Yes 3 40 0 1 0 0 0 0 0 1 Yes 3 Yes In progress GPC NA NA NA Base year intensity target Yes Yes Yes 85.0000 0.2500 5.000000 0.00 1.5000 0.0000 8.0000 0.0000 0.2500 0.0000 1.7500 Yes 2.7900000 12.6000000 66.0000000 8.1000000 10.000000 Yes Yes 75.0000 Yes -6.792350 39.208300 TZA
2020 35893 City of Dar es Salaam Dar es Salaam United Republic of Tanzania Africa No 6041000 POINT (39.2083 -6.79235) Yes Yes 3 40 0 1 0 0 0 0 0 1 Yes 3 Yes In progress GPC NA NA NA Base year emissions (absolute) target Yes Yes Yes 85.0000 0.2500 5.000000 0.00 1.5000 0.0000 8.0000 0.0000 0.2500 0.0000 1.7500 Yes 2.7900000 12.6000000 66.0000000 8.1000000 10.000000 Yes Yes 75.0000 Yes -6.792350 39.208300 TZA
2020 74594 City of Boynton Beach Boynton Beach United States of America North America No 77696 POINT (-80.216 26.4986) In progress In progress 15 233 NA NA NA NA NA NA NA NA Do not know 25 In progress Yes GPC This is our first year of calculation Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes In progress 0.0000 5.3400 70.040000 0.00 0.0000 17.1300 0.3800 7.0500 0.0600 0.0000 0.0600 NA NA NA NA NA NA No No 99.0000 Yes 26.498600 -80.216000 USA
2020 50782 Dhaka City Dhaka Bangladesh South and West Asia No 8000000 POINT (90.4125 23.8103) Yes In progress 2 41 NA NA NA NA NA NA NA NA Yes 2 In progress In progress GPC NA NA NA Base year intensity target In progress In progress In progress NA NA NA NA NA NA NA NA NA NA NA In progress NA NA NA NA NA Do not know Do not know 85.0000 In progress 23.810300 90.412500 BGD
2020 69968 Alcaldia de Rionegro Rionegro Colombia Latin America No 142078 POINT (-75.3739 6.15316) Yes Yes 3 27 NA NA NA NA NA NA NA NA No 6 Yes Yes City specific methodology Increased Do not know Yes No target Yes Yes In progress 0.0000 0.0000 25.000000 0.00 45.0000 0.0000 15.0000 0.0000 15.0000 0.0000 60.0000 Do not know 25.0000000 2.0000000 NA 36.0000000 26.000000 Do not know Do not know 95.0000 Intending to undertake in next 2 years 6.153160 -75.373900 COL
2020 60379 Alcaldía de Tunja Tunja Colombia Latin America No 152419 POINT (-3.63354 40.4712) Yes NA 5 36 NA NA NA NA NA NA NA NA NA 1 NA In progress NA NA NA NA NA NA Yes Do not know NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA In progress 5.531815 -73.361972 COL
2020 54124 City of Fremont Fremont United States of America North America No 234237 POINT (-121.989 37.5483) Yes Yes 6 90 NA NA NA NA NA NA NA NA Yes 2 Yes Yes ICLEI Decreased Yes Not intending to undertake Base year emissions (absolute) target Yes Yes Intending to undertake in the next 2 years 4.0000 0.0000 15.000000 4.00 15.0000 34.0000 0.0000 0.0000 18.0000 10.0000 47.0000 Intending to undertake in the next 2 years 9.0000000 4.0000000 2.0000000 83.0000000 2.000000 No No 99.0000 Yes 37.548300 -121.989000 USA
2020 60433 City of Hvidovre Hvidovre Denmark Europe No 53282 POINT (12.4754 55.6425) Yes Yes 4 67 NA NA NA NA NA NA NA NA Yes 8 Yes Yes GPC Stayed the same Not intending to undertake Not intending to undertake Fixed level target Yes Yes Yes 13.5000 10.5000 7.000000 0.00 10.5000 4.7000 0.8800 4.2200 3.6000 45.1000 59.2000 Yes NA NA NA NA NA No Yes 100.0000 Yes 55.642500 12.475400 DNK
2020 60272 Prefeitura de Campina Grande Campina Grande Brazil Latin America No 410332 POINT (-35.8808 -7.2291) Yes Yes 1 12 NA NA NA NA NA NA NA NA NA 1 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target In progress Yes Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No Do not know NA Intending to undertake in next 2 years -7.229100 -35.880800 BRA
2020 832009 Ayuntamiento de Xalapa Xalapa Mexico Latin America No 480841 POINT (-98.7556 20.1318) Yes Yes 3 48 NA NA NA NA NA NA NA NA Yes 4 Intending to undertake in the next 2 years Yes NA Do not know Intending to undertake in the next 2 years Not intending to undertake No target Intending to undertake in the next 2 years Yes In progress 1.0000 12.0000 0.000000 2.00 10.0000 4.0000 63.0000 3.0000 1.0000 4.0000 17.0000 Yes 37.0000000 2.0000000 1.0000000 40.0000000 20.000000 Yes Yes 93.0000 Yes 20.131800 -98.755600 MEX
2020 839980 Municipalidad de Avellaneda Argentina Latin America No 26492 Yes Yes 8 98 1 0 0 0 0 0 0 1 Do not know 9 Yes Yes GPC This is our first year of calculation Not intending to undertake Not intending to undertake Baseline scenario (business as usual) target Yes Yes Do not know NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Yes 100.0000 Yes -34.662500 -58.367800 ARG
2020 20113 City of Vancouver Vancouver Canada North America No 648000 POINT (-123.114 49.2612) Yes Yes 12 88 0 1 0 0 0 1 0 2 Yes 12 Yes Yes GPC Decreased Yes Yes Base year emissions (absolute) target Yes Yes Yes 6.0000 0.0000 2.000000 0.00 91.0000 0.0000 0.0000 0.0000 0.0000 1.0000 92.0000 Yes 18.3000000 8.8000000 0.0000000 45.9000000 27.000000 No Yes 100.0000 In progress 49.261200 -123.114000 CAN
2020 35862 City of Detroit Detroit United States of America North America No 673104 POINT (-83.0457 42.3314) In progress Intending to undertake in the next 2 years 5 32 NA NA NA NA NA NA NA NA NA 3 Do not know Yes ICLEI NA NA Do not know Base year emissions (absolute) target Intending to undertake in the next 2 years Yes Yes 1.2000 60.8000 7.890000 0.00 0.1400 22.8700 0.2100 0.4700 0.0600 6.3600 6.5600 NA NA NA NA NA NA NA Do not know NA NA 42.331400 -83.045700 USA
2020 31182 City of San Francisco San Francisco United States of America North America No 883305 POINT (-122.419 37.7749) Yes Yes 8 99 NA NA NA NA NA NA NA NA Yes 7 Yes Yes GPC Increased Yes Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 2.0000 0.0000 8.000000 4.00 37.0000 18.0000 0.0000 7.0000 10.0000 14.0000 65.0000 Not intending to undertake 22.0000000 2.0000000 6.0000000 48.0000000 22.000000 No No 100.0000 Yes 37.774900 -122.419000 USA
2020 31182 City of San Francisco San Francisco United States of America North America No 883305 POINT (-122.419 37.7749) Yes Yes 8 99 NA NA NA NA NA NA NA NA Yes 7 Yes Yes GPC Increased Yes Not intending to undertake Fixed level target Yes Yes Yes 2.0000 0.0000 8.000000 4.00 37.0000 18.0000 0.0000 7.0000 10.0000 14.0000 65.0000 Not intending to undertake 22.0000000 2.0000000 6.0000000 48.0000000 22.000000 No No 100.0000 Yes 37.774900 -122.419000 USA
2020 826427 Município de Valongo Valongo Portugal Europe No 97444 POINT (-8.49835 41.1887) In progress Yes 5 0 0 1 0 0 0 1 0 2 Yes 10 Yes Yes Regional or country specific methodology Decreased Yes Yes Fixed level target In progress Yes Yes 5.0000 37.0000 25.000000 NA 8.0000 0.0000 NA 13.0000 NA 12.0000 NA In progress 13.2000000 NA 0.6000000 66.3000000 19.600000 Do not know Yes 99.0000 Yes 41.188700 -8.498350 PRT
2020 59536 City of Kitchener Kitchener Canada North America No 246700 POINT (-80.561 43.42) Yes Yes 3 60 0 0 0 1 0 1 0 2 Yes 5 Yes Yes NA Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Not intending to undertake 0.5000 0.0000 6.100000 0.00 24.0000 58.2000 0.0000 0.6000 2.4000 8.2000 34.6000 Not intending to undertake 7.3000000 1.2000000 NA 85.5000000 5.400000 No Yes 93.0000 Not intending to undertake 43.420000 -80.561000 CAN
2020 3417 New York City New York City United States of America North America No 8399000 POINT (-74.0059 40.7128) Yes Yes 5 83 NA NA NA NA NA NA NA NA NA 5 Yes Yes GPC Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Yes NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No NA 100.0000 Yes 40.712800 -74.005900 USA
2020 60125 Klaipeda City Municipality Klaipeda Lithuania Europe No 147892 Yes Not intending to undertake 3 27 NA NA NA NA NA NA NA NA NA 2 Yes Yes Regional or country specific methodology Stayed the same Do not know Do not know Base year intensity target In progress Yes Yes 60.0000 NA 18.000000 NA NA NA 8.0000 14.0000 NA NA NA NA NA NA NA NA NA No NA 100.0000 Not intending to undertake 55.704264 21.149797 LTU
2020 35858 City of Cape Town Cape Town South Africa Africa No 4400240 POINT (18.4239 -33.9253) Yes Yes 12 161 0 0 0 1 0 0 0 1 Yes 11 Yes Yes GPC Decreased Not intending to undertake Not intending to undertake Baseline scenario (business as usual) target Yes Yes In progress 0.0150 89.6000 0.015000 0.00 0.5400 4.6990 0.4010 0.0620 1.7940 2.8740 5.2080 Yes 26.0000000 1.0000000 12.0000000 53.0000000 8.000000 No No 100.0000 Yes -33.925300 18.423900 ZAF
2020 36426 Riga City Riga Latvia Europe No 627487 POINT (24.1052 56.9496) Yes Yes 2 50 NA NA NA NA NA NA NA NA Yes 2 Yes In progress NA NA NA NA Fixed level target Yes Yes Yes 1.6200 0.0000 98.040000 0.00 0.0000 0.0000 0.0000 0.3400 0.0000 0.0000 0.0000 Yes 26.8000000 3.6000000 8.6000000 31.8000000 29.200000 No Yes 98.3000 Not intending to undertake 56.949600 24.105200 LVA
2020 36426 Riga City Riga Latvia Europe No 627487 POINT (24.1052 56.9496) Yes Yes 2 50 NA NA NA NA NA NA NA NA Yes 2 Yes In progress NA NA NA NA Base year emissions (absolute) target Yes Yes Yes 1.6200 0.0000 98.040000 0.00 0.0000 0.0000 0.0000 0.3400 0.0000 0.0000 0.0000 Yes 26.8000000 3.6000000 8.6000000 31.8000000 29.200000 No Yes 98.3000 Not intending to undertake 56.949600 24.105200 LVA
2020 36494 Comune di Padova Padova Italy Europe No 210440 POINT (11.8768 45.4064) In progress Yes 4 66 0 1 0 0 0 0 0 1 Yes 12 In progress Yes NA Decreased Yes Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes 6.6000 11.0000 48.300000 2.10 12.8000 0.0000 3.9000 1.1000 8.2000 6.0000 29.1000 Yes 17.0000000 25.0000000 0.0000000 48.0000000 10.000000 Yes Yes 100.0000 Yes 45.406400 11.876800 ITA
2020 60110 Municipality of Chişinău Municipality of Chişinău Republic of Moldova Europe Yes 2550000 In progress Not intending to undertake 2 NA NA NA NA NA NA NA NA NA Yes 1 Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA Not intending to undertake 10.0000 NA 90.000000 1.00 NA NA NA NA 1.0000 NA NA In progress NA NA NA NA NA No No 70.0000 Not intending to undertake 47.007302 28.843452 MDA
2020 36501 Comune di Prato Prato Italy Europe No 195335 Yes In progress 4 28 NA NA NA NA NA NA NA NA Do not know 4 In progress Yes Regional or country specific methodology Decreased Do not know In progress Base year emissions (absolute) target Yes Do not know In progress 6.8300 12.4700 39.060000 2.17 17.5300 4.1100 0.5400 2.9900 8.0800 6.2200 34.0000 Do not know 24.6000000 2.5000000 7.8000000 62.0000000 3.100000 Yes Do not know NA NA 43.880800 11.096600 ITA
2020 74531 Santa Fe County Santa Fe County United States of America North America No 150358 POINT (-106 35.5) In progress In progress 4 76 0 1 1 0 0 0 0 2 No 3 Do not know In progress NA NA NA NA Fixed level target In progress Yes Yes 0.0000 50.6000 11.100000 0.10 0.0000 29.5000 0.0000 0.0000 2.3000 6.4000 8.8000 Do not know NA NA NA NA NA No Do not know 95.0000 NA 35.500000 -106.000000 USA
2020 73295 City of La Crosse, WI La Crosse United States of America North America No 51320 POINT (-91.2396 43.8014) In progress Intending to undertake in the next 2 years 3 24 NA NA NA NA NA NA NA NA No 2 Intending to undertake in the next 2 years Yes City specific methodology Increased Not intending to undertake Intending to undertake in the next 2 years Fixed level target Intending to undertake in the next 2 years Yes Yes 0.0000 29.8000 12.100000 0.00 6.3000 29.2000 0.0000 4.3000 0.0000 18.3000 24.6000 NA NA NA NA NA NA No No 100.0000 Not intending to undertake 43.801400 -91.239600 USA
2020 31114 City of Sydney City of Sydney Australia Southeast Asia and Oceania No 249676 POINT (151.207 -33.8675) Yes Yes 13 233 0 0 4 2 0 0 0 6 Yes 5 Yes Yes GPC Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 1.4000 62.7000 19.600000 0.00 6.3000 0.0000 2.0000 NA 3.1000 4.9000 14.3000 Not intending to undertake 48.2000000 0.6000000 3.0000000 43.1000000 5.100000 No No 100.0000 Yes -33.867500 151.207000 AUS
2020 53959 City of Fayetteville, AR Fayetteville United States of America North America No 91400 POINT (-94.1719 36.0821) Yes Yes 9 86 0 2 0 1 0 1 0 4 Yes 11 Yes Yes ICLEI Decreased Not intending to undertake Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes 1.4000 30.9000 40.000000 0.00 2.8000 0.0000 1.7000 0.4000 0.4000 22.4000 25.6000 Yes 1.6000000 1.2000000 4.9000000 87.9000000 4.400000 No No 100.0000 Yes 36.082100 -94.171900 USA
2020 74563 Town of Guilford, VT United States of America North America No 2121 Intending to incorporate in the next 2 years Intending to undertake in the next 2 years 1 20 NA NA NA NA NA NA NA NA NA 1 Intending to undertake in the next 2 years Not intending to undertake NA NA NA NA No target Intending to undertake in the next 2 years NA Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No NA 100.0000 Intending to undertake in next 2 years 41.334500 -72.700400 USA
2020 54395 Taoyuan City Government Taoyuan Taiwan, Greater China East Asia No 2188017 POINT (121.301 24.9931) Yes Yes 4 64 NA NA NA NA NA NA NA NA Yes 7 Yes Yes NA Increased Yes Yes Base year emissions (absolute) target Yes Yes In progress 0.0000 37.3000 38.200000 0.00 2.4000 13.4000 1.9000 4.3000 1.7000 0.8000 4.9000 In progress 23.2000000 5.2000000 0.8000000 79.3000000 6.900000 Yes Do not know 0.9552 Yes 24.993100 121.301000 TWN
2020 31113 City of Yokohama Yokohama Japan East Asia No 3753771 POINT (139.638 35.4437) Yes Yes 4 0 NA NA NA NA NA NA NA NA No 14 Yes Yes GPC Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 0.0000 5.0000 46.000000 0.00 16.0000 20.0000 14.0000 0.0000 0.0000 0.0000 16.0000 Yes 36.0000000 13.0000000 NA 27.0000000 23.000000 No Yes 100.0000 Yes 35.443700 139.638000 JPN
2020 36032 Ville de Dakar Dakar Senegal Africa No 1252786 POINT (-17.366 14.7645) Yes Yes 4 58 0 0 0 1 0 0 0 1 Yes 2 Yes Yes GPC Do not know Not intending to undertake Yes Baseline scenario (business as usual) target Yes Do not know Intending to undertake in the next 2 years NA 75.0000 1.000000 NA NA NA NA 24.0000 NA NA NA Do not know 32.4000000 7.3000000 11.9000000 56.2000000 70.000000 No No 100.0000 Not intending to undertake 14.764500 -17.366000 SEN
2020 73669 San Luis Obispo United States of America North America Yes 47117 Yes Yes 4 44 NA NA NA NA NA NA NA NA Yes 10 Yes Yes ICLEI Decreased Not intending to undertake Do not know Base year emissions (absolute) target Yes Yes Yes NA NA NA 12.00 66.0000 NA NA NA 11.0000 11.0000 100.0000 Yes 2.8000000 10.0000000 NA NA 20.600000 No No 100.0000 Yes 35.266900 -120.669100 USA
2020 73669 San Luis Obispo United States of America North America Yes 47117 Yes Yes 4 44 NA NA NA NA NA NA NA NA Yes 10 Yes Yes ICLEI Decreased Not intending to undertake Do not know Fixed level target Yes Yes Yes NA NA NA 12.00 66.0000 NA NA NA 11.0000 11.0000 100.0000 Yes 2.8000000 10.0000000 NA NA 20.600000 No No 100.0000 Yes 35.266900 -120.669100 USA
2020 55800 City of Cambridge Cambridge, MA United States of America North America No 109694 POINT (-93.3273 45.601) Yes Yes 4 0 0 0 0 1 0 0 0 1 Yes 2 Yes Yes GPC This is our first year of calculation Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 2.9000 1.6000 48.000000 NA 8.4000 30.8000 0.7000 3.5000 0.9000 3.2000 NA In progress 26.1000000 4.8000000 NA 44.7000000 13.600000 No Do not know 100.0000 Yes 45.601000 -93.327300 USA
2020 63862 City of Ashland, OR United States of America North America No 21117 In progress Yes 4 NA NA NA NA NA NA NA NA NA NA 5 Intending to undertake in the next 2 years Yes ICLEI NA Yes Do not know Fixed level target Yes Yes Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No NA NA Yes 40.768200 -74.234800 USA
2020 68296 Hobsons Bay City Council Australia Southeast Asia and Oceania No 96470 Yes Yes 6 58 NA NA NA NA NA NA NA NA NA 6 In progress Yes GPC NA NA Do not know Fixed level target Yes Yes NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA -37.836100 144.840100 AUS
2020 69850 Municipalidad de Comas Comas Peru Latin America No 548565 POINT (-77.0667 -11.95) Yes In progress 4 54 0 0 1 0 0 0 0 1 Yes 3 In progress Intending to undertake in the next 2 years NA NA NA NA No target In progress In progress Intending to undertake in the next 2 years 0.0000 0.0000 1.000000 0.00 0.0000 0.0000 98.0000 1.0000 0.0000 0.0000 0.0000 In progress 85.0000000 1.0000000 2.0000000 10.0000000 2.000000 No No 95.0000 In progress -11.950000 -77.066700 PER
2020 74414 Boulder County Boulder County United States of America North America No 322226 POINT (-105.5 40.15) Yes Yes 2 50 NA NA NA NA NA NA NA NA Yes 2 Yes Yes GPC Decreased Intending to undertake in the next 2 years Not intending to undertake Base year emissions (absolute) target Yes Yes NA NA NA NA NA NA NA NA NA NA NA NA Yes NA NA NA NA NA No Yes 100.0000 Yes 40.150000 -105.500000 USA
2020 54114 City of Asheville Asheville United States of America North America No 92870 POINT (-82.5515 35.5951) Yes Yes 5 80 0 1 0 0 1 0 0 2 Do not know 7 Yes Not intending to undertake NA NA NA NA Base year emissions (absolute) target Yes Yes Yes 0.0000 10.5000 40.400000 3.00 7.3000 31.6000 0.1000 NA 7.1000 0.0000 17.4000 Not intending to undertake 1.4000000 0.7000000 9.1000000 84.3000000 4.500000 No Yes 100.0000 Yes 35.595100 -82.551500 USA
2020 54109 City of Bloomington Bloomington United States of America North America No 85755 POINT (-86.5264 39.1653) Yes Yes 7 57 NA NA NA NA NA NA NA NA NA 1 Yes Yes GPC Do not know Intending to undertake in the next 2 years Yes Base year emissions (absolute) target Yes Yes Intending to undertake in the next 2 years 0.0000 79.2000 4.900000 0.00 0.6000 0.0000 0.0000 14.5000 0.8000 0.0000 1.4000 In progress NA NA NA NA NA No Yes 100.0000 Yes 39.165300 -86.526400 USA
2020 54681 Prefeitura Municipal de Araçatuba Araçatuba Brazil Latin America No 195874 POINT (-50.4328 -21.2089) Yes In progress 1 2 NA NA NA NA NA NA NA NA Do not know 1 Do not know In progress NA NA NA NA Base year emissions (absolute) target In progress Yes Yes NA NA NA NA 100.0000 NA NA NA NA NA NA In progress NA NA NA NA NA Yes Yes 100.0000 In progress -21.208900 -50.432800 BRA
2020 54529 City of Leicester Leicester United Kingdom of Great Britain and Northern Ireland Europe No 353540 POINT (-1.1333 52.6333) Not intending to incorporate Yes 5 35 0 1 0 0 0 0 0 1 Yes 4 Yes Yes GPC Decreased Not intending to undertake Not intending to undertake Fixed level target Yes Yes Yes 0.0000 5.1000 39.500000 0.00 1.6000 19.5000 2.9000 10.4000 0.0000 21.0000 22.6000 Not intending to undertake 15.2000000 1.6000000 1.5000000 71.0000000 10.300000 No Yes 100.0000 Not intending to undertake 52.633300 -1.133300 GBR
2020 848409 Lince Peru Latin America Yes 55000 Yes Yes 2 28 NA NA NA NA NA NA NA NA Yes 2 In progress Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years Intending to undertake in the next 2 years In progress NA NA NA 60.00 40.0000 NA NA NA NA NA NA In progress NA NA NA NA NA No Yes 96.0000 In progress -12.086568 -77.036647 PER
2020 31155 City of Buenos Aires Buenos Aires Argentina Latin America No 3063728 POINT (-58.3816 -34.6037) Yes Yes 7 109 0 0 0 1 1 0 0 2 Yes 26 Yes Yes GPC Decreased Intending to undertake in the next 2 years Not intending to undertake Baseline scenario (business as usual) target Yes Yes Not intending to undertake 0.4100 0.3300 57.700000 0.00 27.4900 5.9200 1.7700 2.0500 0.6000 3.7300 31.8200 Intending to undertake in the next 2 years 47.0200000 3.1700000 1.5800000 27.9600000 20.270000 Yes Yes 100.0000 Not intending to undertake -34.603700 -58.381600 ARG
2020 31090 District of Columbia Washington, DC United States of America North America No 701547 POINT (-77.0369 38.9072) Yes Yes 8 165 0 0 0 0 1 0 0 1 Yes 15 Yes Yes GPC Decreased Not intending to undertake Do not know Base year emissions (absolute) target Yes Yes Yes 1.7000 15.5000 39.600000 0.00 2.0000 38.9000 0.5000 0.3000 0.5000 1.0000 3.5000 Yes 38.3000000 4.9000000 1.6000000 40.6000000 14.600000 No Yes 100.0000 Yes 38.907200 -77.036900 USA
2020 54488 Trondheim Municipality Trondheim Norway Europe No 205000 POINT (10.395 63.4305) Yes In progress 4 38 NA NA NA NA NA NA NA NA No 7 Yes Yes 2006 IPCC Guidelines Increased Intending to undertake in the next 2 years Yes Base year emissions (absolute) target Yes Yes Yes 0.0000 0.0000 1.000000 0.00 98.0000 0.0000 1.0000 0.0000 0.0000 0.0000 98.0000 Yes 11.0000000 10.0000000 2.0000000 41.0000000 27.000000 No Yes 100.0000 Yes 63.430500 10.395000 NOR
2020 36261 Comune di Bolzano Bolzano Italy Europe No 107914 POINT (11.3566 46.4997) Yes Yes 4 51 NA NA NA NA NA NA NA NA Yes 6 Yes Yes 2006 IPCC Guidelines Decreased Not intending to undertake In progress Base year emissions (absolute) target In progress Yes In progress NA NA NA NA NA NA NA NA NA NA NA In progress 9.0000000 24.0000000 NA 37.0000000 29.000000 No Do not know 100.0000 NA 46.499700 11.356600 ITA
2020 54108 City of Durham Durham, NC United States of America North America No 271616 POINT (-78.8986 35.994) Yes Yes 4 66 NA NA NA NA NA NA NA NA NA 3 Intending to undertake in the next 2 years Yes GPC Decreased Not intending to undertake Not intending to undertake Baseline scenario (business as usual) target Yes Yes Yes 4.0000 26.0000 30.000000 0.00 4.0000 32.0000 0.0000 0.0000 4.0000 0.0000 8.0000 NA NA NA NA NA NA No No 100.0000 Yes 35.994000 -78.898600 USA
2020 74558 Summit County, UT United States of America North America No 42145 Yes Intending to undertake in the next 2 years 6 120 0 0 1 0 0 0 0 1 Do not know 6 Intending to undertake in the next 2 years Yes NA Increased Do not know Not intending to undertake Base year emissions (absolute) target In progress Yes Yes NA 61.0000 14.000000 NA 6.0000 NA NA 19.0000 NA NA NA Intending to undertake in the next 2 years NA NA NA NA NA No NA 100.0000 NA 36.124200 -115.332400 USA
2020 37241 City of Berkeley Berkeley United States of America North America No 121643 Yes Yes 7 135 NA NA NA NA NA NA NA NA Yes 6 Yes Yes GPC Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 2.0000 0.0000 6.000000 2.00 12.0000 13.0000 0.0000 10.0000 28.0000 27.0000 69.0000 Not intending to undertake 26.2000000 6.2000000 1.7000000 39.3000000 17.100000 No Yes 100.0000 Not intending to undertake 37.872300 -122.276000 USA
2020 834139 Gangdong-gu Municipal Government Republic of Korea East Asia Yes 455042 Intending to incorporate in the next 2 years Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA No 1 In progress Yes Regional or country specific methodology NA Yes Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA Intending to undertake in the next 2 years NA NA NA NA NA No No NA Yes 37.530000 127.123700 KOR
2020 54637 Alcaldía de Cuenca Cuenca Ecuador Latin America No 505585 POINT (-79.0048 -2.90841) Yes Do not know 3 39 NA NA NA NA NA NA NA NA Yes 3 Yes Yes GPC Do not know Do not know Intending to undertake in the next 2 years Base year emissions (absolute) target In progress Yes Do not know 0.0000 0.0000 12.000000 0.00 11.0000 0.0000 32.0000 1.0000 0.0000 0.0000 11.0000 Do not know 1.8110000 12.0000000 3.0000000 79.6000000 0.000000 No Yes 97.0000 Yes -2.908410 -79.004800 ECU
2020 831431 Cornwall Council United Kingdom of Great Britain and Northern Ireland Europe Yes 569578 In progress In progress NA NA 0 0 0 1 0 0 0 1 Yes 1 Yes Yes GPC Decreased Intending to undertake in the next 2 years Intending to undertake in the next 2 years Fixed level target Yes Yes Yes NA NA NA NA NA NA NA NA NA NA NA Yes NA NA NA NA NA No NA NA Yes 52.454000 1.691000 GBR
2020 50578 City of Windsor Windsor Canada North America No 233763 POINT (-83.0364 42.3149) Yes Yes 9 106 0 1 1 0 0 0 0 2 Yes 84 Yes Yes GPC Increased Not intending to undertake Not intending to undertake Base year intensity target Yes Yes Yes 0.5000 0.0000 6.000000 0.00 25.0000 61.0000 0.0000 0.0000 0.5000 7.0000 32.5000 Yes 5.0000000 1.0000000 8.0000000 82.0000000 4.000000 No No 100.0000 Yes 42.314900 -83.036400 CAN
2020 31176 Prefeitura do Rio de Janeiro Rio de Janeiro Brazil Latin America No 6718903 POINT (-43.5614 -22.9054) Yes Yes 16 301 1 2 0 0 1 1 0 5 Yes 25 Yes Yes GPC Decreased Do not know Intending to undertake in the next 2 years Fixed level target Yes Yes Yes 4.8000 2.2000 7.500000 0.00 71.1000 2.6000 0.8000 0.5000 0.9000 9.6000 81.6000 NA 43.2000000 2.4000000 7.5000000 17.4000000 29.400000 No Yes 97.4100 Not intending to undertake -22.905400 -43.561400 BRA
2020 31176 Prefeitura do Rio de Janeiro Rio de Janeiro Brazil Latin America No 6718903 POINT (-43.5614 -22.9054) Yes Yes 16 301 1 2 0 0 1 1 0 5 Yes 25 Yes Yes GPC Decreased Do not know Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes 4.8000 2.2000 7.500000 0.00 71.1000 2.6000 0.8000 0.5000 0.9000 9.6000 81.6000 NA 43.2000000 2.4000000 7.5000000 17.4000000 29.400000 No Yes 97.4100 Not intending to undertake -22.905400 -43.561400 BRA
2020 35872 Municipality of Recife Recife Brazil Latin America No 1645727 POINT (-34.8829 -8.05783) Yes Yes 8 174 0 0 1 1 0 1 0 3 Yes 6 Yes Yes GPC Increased Intending to undertake in the next 2 years In progress Baseline scenario (business as usual) target Yes In progress Yes 0.9000 2.8000 30.200000 0.00 51.2000 2.6000 4.1000 3.1000 0.0000 5.1000 56.3000 Yes 57.0700000 4.0200000 1.1300000 28.8400000 8.940000 No Yes 89.0000 Yes -8.057830 -34.882900 BRA
2020 36274 Comune di Bologna Bologna Italy Europe No 390636 POINT (11.3387 44.4938) Yes Yes 5 60 NA NA NA NA NA NA NA NA Do not know 10 Yes Yes NA Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes In progress 12.2700 0.0000 74.000000 0.00 4.1600 0.0000 0.0000 0.0000 9.4100 0.1600 13.7300 In progress 21.0000000 10.0000000 NA 42.0000000 27.000000 Yes Yes 100.0000 Intending to undertake in next 2 years 44.493800 11.338700 ITA
2020 43909 City of Orlando Orlando United States of America North America No 287442 POINT (-81.3792 28.5383) Yes Yes 7 121 NA NA NA NA NA NA NA NA Yes 1 In progress Yes GPC Decreased Intending to undertake in the next 2 years Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes 0.0000 50.0000 41.000000 0.00 0.0000 7.0000 0.0000 0.0000 2.0000 0.0000 2.0000 Yes NA NA NA NA NA No No 100.0000 Yes 28.538300 -81.379200 USA
2020 35884 City of San Diego San Diego United States of America North America No 1394928 POINT (-117.17 32.7181) Yes Yes NA NA NA NA NA NA NA NA NA NA NA 1 In progress Yes ICLEI Stayed the same NA Not intending to undertake Base year emissions (absolute) target Yes Yes Yes NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 100.0000 NA 32.718100 -117.170000 USA
2020 35884 City of San Diego San Diego United States of America North America No 1394928 POINT (-117.17 32.7181) Yes Yes NA NA NA NA NA NA NA NA NA NA NA 1 In progress Yes ICLEI Stayed the same NA Not intending to undertake Baseline scenario (business as usual) target Yes Yes Yes NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 100.0000 NA 32.718100 -117.170000 USA
2020 42388 Intendencia de Montevideo Montevideo Uruguay Latin America No 1383432134 POINT (-58.2987 -34.7112) Not intending to incorporate Yes 5 72 NA NA NA NA NA NA NA NA No 3 Yes In progress GPC NA NA NA No target Not intending to undertake Do not know Not intending to undertake 26.9700 0.0000 0.000000 0.00 58.8400 0.0000 0.0000 NA 0.8500 13.3300 73.0200 Not intending to undertake 28.0000000 5.0000000 6.0000000 31.0000000 30.000000 No No 99.6000 Intending to undertake in next 2 years -34.711200 -58.298700 URY
2020 58488 Sonderborg Kommune Sonderborg Denmark Europe No 74446 POINT (9.79217 54.9138) Yes Yes 9 72 NA NA NA NA NA NA NA NA NA 9 Yes Yes NA NA NA Yes Base year emissions (absolute) target Yes Yes Yes 14.0000 24.0000 8.000000 0.00 7.0000 2.0000 1.0000 0.0000 2.0000 42.0000 51.0000 Yes NA NA 100.0000000 NA NA No NA NA NA 54.913800 9.792170 DNK
2020 43912 City of Edmonton Edmonton Canada North America No 972223 POINT (-113.491 53.5444) Yes Yes 7 123 NA NA NA NA NA NA NA NA Yes 18 Yes Yes GPC Decreased Yes Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes 0.0000 35.0000 46.000000 0.00 5.0000 0.0000 0.0000 3.0000 0.0000 11.0000 16.0000 Yes 13.0000000 1.0000000 3.0000000 76.0000000 4.000000 No Yes 100.0000 Yes 53.544400 -113.491000 CAN
2020 50540 City of Albuquerque United States of America North America Yes 560513 Yes Intending to undertake in the next 2 years 4 NA 0 0 0 0 0 1 0 1 Do not know 4 Intending to undertake in the next 2 years In progress City specific methodology NA NA NA Base year emissions (absolute) target In progress Yes Yes 0.0000 28.0000 30.000000 0.50 0.0000 15.0000 5.0000 0.0000 8.5000 13.0000 22.0000 In progress NA NA NA NA NA No No 100.0000 Yes 35.105300 -106.646400 USA
2020 54092 City of Ann Arbor Ann Arbor United States of America North America No 121890 POINT (-83.743 42.2808) Yes Yes 12 210 NA NA NA NA NA NA NA NA Do not know 9 Yes Yes ICLEI Decreased Intending to undertake in the next 2 years Not intending to undertake Fixed level target Yes Yes Yes 1.0500 62.7300 6.490000 0.00 0.2100 22.1300 0.2100 0.5900 0.1700 6.4200 6.8000 In progress NA NA NA NA NA No Do not know 99.0000 Not intending to undertake 42.280800 -83.743000 USA
2020 63543 Fredensborg Kommune Fredensborg Denmark Europe No 40865 POINT (12.4058 55.9747) Yes Yes 3 13 NA NA NA NA NA NA NA NA No 3 Yes Yes Regional or country specific methodology Increased NA Yes Base year emissions (absolute) target Yes Yes Yes 13.0000 12.0000 7.000000 0.00 10.0000 5.0000 1.0000 3.0000 4.0000 45.0000 59.0000 In progress NA NA NA NA NA No Yes 100.0000 Yes 55.974700 12.405800 DNK
2020 59958 Tweed Shire Council Australia Southeast Asia and Oceania Yes 96108 Do not know Yes 9 151 NA NA NA NA NA NA NA NA Yes 7 Yes Yes GPC Increased Not intending to undertake Yes Fixed level target Yes Yes Intending to undertake in the next 2 years 0.0000 68.0000 31.000000 0.00 0.0000 0.0000 0.0000 1.0000 0.0000 0.0000 0.0000 Do not know NA NA NA NA NA No Yes 100.0000 Yes -28.349407 153.344927 AUS
2020 54348 The Local Government of Quezon City Quezon City Philippines Southeast Asia and Oceania No 3112436 POINT (120.862 15.6835) Yes Yes 4 100 NA NA NA NA NA NA NA NA Yes 13 Yes Yes GPC This is our first year of calculation Intending to undertake in the next 2 years Yes Baseline scenario (business as usual) target Yes Yes Intending to undertake in the next 2 years 0.8000 25.7700 11.920000 6.65 12.5700 0.0000 38.1500 0.0000 2.6600 1.4800 23.3600 In progress 10.5000000 2.2000000 47.6000000 9.0000000 30.700000 NA Yes 98.0600 NA 15.683500 120.862000 PHL
2020 60599 Town of Bridgewater, NS Bridgewater Canada North America No 8532 POINT (-64.5188 44.3786) Yes Yes 8 76 NA NA NA NA NA NA NA NA Do not know 2 Yes Intending to undertake in the next 2 years NA NA NA NA Base year emissions (absolute) target Yes Yes In progress NA NA NA NA NA NA NA NA NA NA NA In progress NA NA NA NA NA No No 100.0000 In progress 44.378600 -64.518800 CAN
2020 55373 Prefeitura Municipal de Cabreúva Cabreúva Brazil Latin America No 47877 POINT (-47.1367 -23.3058) Yes Do not know 1 1 NA NA NA NA NA NA NA NA NA 1 Do not know NA NA NA NA NA No target NA NA NA NA NA NA NA 100.0000 NA NA NA NA NA NA NA NA NA NA NA NA Yes Do not know 95.3000 In progress -23.305800 -47.136700 BRA
2020 54345 City Government of Davao Davao Philippines Southeast Asia and Oceania No 1632991 POINT (125.625 7.07475) Intending to incorporate in the next 2 years Yes 11 130 NA NA NA NA NA NA NA NA Yes 18 Yes Yes NA NA NA Intending to undertake in the next 2 years NA NA NA In progress NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No Yes 97.5600 Yes 7.074750 125.625000 PHL
2020 49367 Freetown City Freetown Sierra Leone Africa No 1200000 POINT (-13.2317 8.4657) Yes Yes 4 67 0 1 0 1 0 0 0 2 Do not know 4 In progress Yes GPC This is our first year of calculation Not intending to undertake In progress No target In progress Yes Not intending to undertake NA NA NA NA 58.0000 NA 42.0000 NA NA NA NA Not intending to undertake 2.2500000 0.5000000 56.0000000 19.0000000 23.250000 No No 50.0000 Intending to undertake in next 2 years 8.465700 -13.231700 SLE
2020 58531 City of Somerville, MA Somerville United States of America North America No 81562 POINT (-71.0826 42.3934) Yes Yes 4 72 NA NA NA NA NA NA NA NA Yes 5 Yes Yes GPC Decreased Intending to undertake in the next 2 years Not intending to undertake Base year emissions (absolute) target Yes Yes Not intending to undertake 2.5000 0.5000 48.500000 0.00 8.9000 30.5000 0.2000 3.6000 1.7000 3.6000 14.2000 NA NA NA NA NA NA No No 100.0000 NA 42.393400 -71.082600 USA
2020 839668 Municipio de Iztapa Guatemala Latin America No 11917 Yes Yes 1 25 NA NA NA NA NA NA NA NA Yes 1 Yes Yes GPC Do not know Do not know Intending to undertake in the next 2 years Base year intensity target Yes Yes Intending to undertake in the next 2 years 7.0000 NA NA NA NA NA 10.0000 83.0000 NA NA NA Do not know 0.0000000 0.0000000 0.0000000 0.0000000 0.000000 No Yes 50.0000 Intending to undertake in next 2 years 13.931047 -90.714593 GTM
2020 68373 Prefeitura de Pedreira Brazil Latin America No 47321 Do not know Do not know 2 24 0 1 0 0 0 0 0 1 Do not know 1 Do not know Yes GPC Do not know Do not know Do not know Base year emissions (absolute) target Do not know In progress Do not know 6.0000 0.0000 0.000000 0.00 68.0000 0.0000 5.0000 0.0000 0.0000 21.0000 89.0000 Yes NA NA NA NA NA No Yes 99.0000 Not intending to undertake -4.569600 -44.670000 BRA
2020 68373 Prefeitura de Pedreira Brazil Latin America No 47321 Do not know Do not know 2 24 0 1 0 0 0 0 0 1 Do not know 1 Do not know Yes GPC Do not know Do not know Do not know Fixed level target Do not know In progress Do not know 6.0000 0.0000 0.000000 0.00 68.0000 0.0000 5.0000 0.0000 0.0000 21.0000 89.0000 Yes NA NA NA NA NA No Yes 99.0000 Not intending to undertake -4.569600 -44.670000 BRA
2020 840269 Town of Whitby, ON Canada North America No 136235 Yes Yes 11 155 0 0 0 3 0 1 0 4 Yes 6 Yes Yes ICLEI This is our first year of calculation Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Intending to undertake in the next 2 years 1.0000 0.0000 28.000000 0.00 23.0000 35.0000 0.0000 0.0000 1.0000 12.0000 36.0000 Intending to undertake in the next 2 years 5.0000000 4.0000000 3.0000000 85.0000000 3.000000 No Yes 99.0000 Not intending to undertake 43.883300 -78.941700 CAN
2020 845133 Prefeitura de Monteiro Lobato Brazil Latin America Yes 4120 Intending to incorporate in the next 2 years Intending to undertake in the next 2 years 1 12 0 0 0 0 0 1 0 1 Do not know 1 NA In progress NA NA NA NA No target Intending to undertake in the next 2 years Yes In progress NA NA NA NA NA NA NA NA NA NA NA Do not know NA NA NA NA NA No Do not know 80.0000 In progress -22.955652 -45.838591 BRA
2020 54491 Municipality of Málaga Málaga Spain Europe No 574654 Yes Yes 3 66 1 1 0 0 0 1 0 3 Yes 3 In progress Yes Regional or country specific methodology Increased Yes In progress Base year emissions (absolute) target In progress Intending to undertake in the next 2 years Yes NA NA NA NA NA NA NA 100.0000 NA NA NA Yes NA NA NA NA NA Yes Yes 100.0000 In progress -25.595178 30.448340 ESP
2020 5871 Essex County Council United Kingdom of Great Britain and Northern Ireland Europe Yes 1492227 Intending to incorporate in the next 2 years Yes 3 34 NA NA NA NA NA NA NA NA Yes 1 Yes Yes GPC This is our first year of calculation Do not know Not intending to undertake No target Intending to undertake in the next 2 years Yes Intending to undertake in the next 2 years 10.5100 5.1000 39.500000 0.00 1.6500 19.5000 0.3000 2.3900 3.8700 17.1800 22.7000 Intending to undertake in the next 2 years NA NA NA NA NA No Do not know NA Yes -33.571704 145.916229 GBR
2020 840943 Prefeitura de Boa Ventura Brazil Latin America No 5751 Intending to incorporate in the next 2 years Intending to undertake in the next 2 years 3 66 NA NA NA NA NA NA NA NA Yes 1 Do not know Intending to undertake in the next 2 years NA NA NA NA Base year intensity target Intending to undertake in the next 2 years Do not know Do not know 0.0000 0.0000 0.000000 0.00 98.0000 0.0000 0.0000 0.0000 0.0000 2.0000 100.0000 Do not know 0.0000000 10.0000000 10.0000000 50.0000000 30.000000 No No 55.0000 Intending to undertake in next 2 years -12.250000 -38.970000 BRA
2020 74607 Gemeente Alkmaar Netherlands Europe Yes 109444 Yes Yes NA NA NA NA NA NA NA NA NA NA No 1 NA Yes Regional or country specific methodology NA NA NA Base year emissions (absolute) target NA NA Yes NA NA 43.100000 3.80 NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 51.196094 5.985730 NLD
2020 43907 City of Indianapolis Indianapolis United States of America North America No 872680 POINT (-86.1785 39.7676) Yes Yes 6 58 0 0 0 1 0 0 0 1 Yes 8 Yes Yes GPC Decreased Not intending to undertake Yes Base year emissions (absolute) target Yes Yes Yes 0.0000 43.0000 45.000000 0.00 0.0000 0.0000 2.0000 0.0000 2.0000 8.0000 10.0000 Yes 13.0000000 1.0000000 0.0000000 85.0000000 1.000000 No No 93.4900 Not intending to undertake 39.767600 -86.178500 USA
2020 31109 City of Melbourne City of Melbourne Australia Southeast Asia and Oceania No 178955 POINT (144.963 -37.8141) Yes Yes 6 150 0 0 0 1 0 1 0 2 Yes 12 Yes Yes GPC Decreased Not intending to undertake Not intending to undertake Fixed level target Yes Yes Yes 1.0000 75.0000 6.200000 NA 5.5000 NA NA 0.5000 3.0000 8.8000 NA Intending to undertake in the next 2 years 0.3732698 0.0355522 0.0211361 0.3563265 0.211016 No Yes 100.0000 Yes -37.814100 144.963000 AUS
2020 31009 City of Copenhagen Copenhagen Denmark Europe No 623500 POINT (12.5683 55.6761) Yes Yes 4 52 NA NA NA NA NA NA NA NA Do not know 4 Yes Yes City specific methodology Increased Intending to undertake in the next 2 years Not intending to undertake Fixed level target Yes Yes Yes 13.0000 19.0000 6.000000 0.00 11.0000 4.0000 1.0000 4.0000 4.0000 38.0000 53.0000 Yes 20.0000000 28.0000000 4.0000000 27.0000000 21.000000 Yes Yes 100.0000 Yes 55.676100 12.568300 DNK
2020 831618 Yaoundé 4 Yaoundé 4 Cameroon Africa No 792546 POINT (11.5167 3.8667) Yes Yes 5 68 NA NA NA NA NA NA NA NA Yes 6 In progress Yes 2006 IPCC Guidelines NA NA In progress Base year emissions (absolute) target In progress Yes Yes NA NA NA NA NA NA NA NA NA NA NA NA 9.5100000 0.0040000 43.8400000 0.0900000 NA No No 80.0000 In progress 3.866700 11.516700 CMR
2020 831618 Yaoundé 4 Yaoundé 4 Cameroon Africa No 792546 POINT (11.5167 3.8667) Yes Yes 5 68 NA NA NA NA NA NA NA NA Yes 6 In progress Yes 2006 IPCC Guidelines NA NA In progress Baseline scenario (business as usual) target In progress Yes Yes NA NA NA NA NA NA NA NA NA NA NA NA 9.5100000 0.0040000 43.8400000 0.0900000 NA No No 80.0000 In progress 3.866700 11.516700 CMR
2020 43914 City of Charlotte Charlotte United States of America North America No 885708 POINT (-80.8431 35.2271) Yes Intending to undertake in the next 2 years 3 52 0 1 0 1 0 0 0 2 Yes 3 Intending to undertake in the next 2 years Yes GPC Increased Do not know In progress Base year emissions (absolute) target In progress Yes Yes 0.0000 31.3000 12.700000 0.00 1.4000 54.5000 0.1000 0.0000 0.0000 0.0000 1.4000 Intending to undertake in the next 2 years NA NA NA NA NA No Do not know 100.0000 Not intending to undertake 35.227100 -80.843100 USA
2020 68385 Municipio de Chorrera Chorrera Panama Latin America No 161470 POINT (-79.7736 8.88289) Yes Intending to undertake in the next 2 years 1 4 NA NA NA NA NA NA NA NA Yes 1 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years Intending to undertake in the next 2 years In progress 0.0000 0.0000 0.000000 0.00 0.0000 0.0000 100.0000 NA 0.0000 0.0000 0.0000 Intending to undertake in the next 2 years NA NA NA NA NA No No NA Not intending to undertake 8.882890 -79.773600 PAN
2020 50387 Prefeitura de Guarulhos Guarulhos Brazil Latin America No 1349000 POINT (-46.5338 -23.4542) NA NA NA NA NA NA NA NA NA NA NA NA NA 1 NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA -23.454200 -46.533800 BRA
2020 54700 Prefeitura Municipal de Sumaré Sumaré Brazil Latin America No 278571 POINT (-47.2669 -22.8219) Intending to incorporate in the next 2 years Do not know 4 37 0 1 0 0 0 1 0 2 Yes 3 Do not know Yes GPC This is our first year of calculation Do not know Do not know Base year emissions (absolute) target Intending to undertake in the next 2 years In progress Do not know 8.0000 3.0000 10.000000 0.00 66.0000 3.0000 2.0000 2.0000 0.0000 6.0000 72.0000 Do not know 28.0000000 2.2000000 0.3070000 36.6000000 32.900000 No Yes 90.0000 Yes -22.821900 -47.266900 BRA
2020 35879 City of Minneapolis Minneapolis United States of America North America No 425403 POINT (-93.2667 44.9833) In progress Yes 8 120 NA NA NA NA NA NA NA NA Do not know 1 Intending to undertake in the next 2 years Yes GPC Increased Intending to undertake in the next 2 years Not intending to undertake Base year emissions (absolute) target Yes Intending to undertake in the next 2 years Yes 2.0000 23.0000 23.000000 0.00 6.0000 28.0000 0.0000 0.0000 3.0000 15.0000 24.0000 Do not know NA NA NA NA NA No Yes 100.0000 Not intending to undertake 44.983300 -93.266700 USA
2020 50384 Prefeitura de Florianópolis Florianópolis Brazil Latin America No 495000 POINT (-48.5482 -27.595) Yes Yes 3 59 0 0 0 0 1 0 0 1 Do not know 3 In progress Yes GPC This is our first year of calculation Do not know Do not know Base year emissions (absolute) target Do not know Yes In progress NA NA NA NA NA NA NA NA NA NA NA Do not know NA NA NA NA NA No Do not know 90.0000 Intending to undertake in next 2 years -27.595000 -48.548200 BRA
2020 70261 Alcaldia de Floridablanca Floridablanca Colombia Latin America No 263095 POINT (-73.0979 7.07001) Yes Intending to undertake in the next 2 years 2 12 NA NA NA NA NA NA NA NA No 2 Yes Not intending to undertake NA NA NA NA No target Not intending to undertake Not intending to undertake Not intending to undertake 0.0000 40.0000 25.000000 0.00 25.0000 0.0000 0.0000 10.0000 0.0000 0.0000 25.0000 Do not know 40.0000000 6.0000000 15.0000000 35.0000000 4.000000 No No 96.2000 Yes 7.070010 -73.097900 COL
2020 840313 Municipalidad Cerro Navia Chile Latin America No 132622 Yes Intending to undertake in the next 2 years 2 40 NA NA NA NA NA NA NA NA Do not know 5 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years In progress Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No Yes 100.0000 Not intending to undertake -33.434347 -70.729032 CHL
2020 54478 Gemeente Nijmegen Nijmegen Netherlands Europe No 179000 POINT (5.84282 51.8449) Yes Yes 5 51 NA NA NA NA NA NA NA NA Yes 5 Yes Yes Regional or country specific methodology Decreased NA NA Base year intensity target NA Yes Yes 7.0000 24.0000 53.000000 0.00 0.1000 4.0000 0.1000 4.0000 0.2000 5.0000 5.3000 NA NA NA NA NA NA NA No 100.0000 Not intending to undertake 51.844900 5.842820 NLD
2020 36043 Abuja Federal Capital Territory Abuja Nigeria Africa No 3278000 POINT (7.39857 9.07647) Yes Yes 1 9 0 1 0 0 0 0 0 1 Do not know 1 In progress Intending to undertake in the next 2 years NA NA NA NA Base year intensity target In progress In progress Yes 9.0000 0.0000 15.000000 0.00 70.0000 0.0000 0.0000 0.0000 4.0000 2.0000 76.0000 In progress 20.0000000 0.0000000 50.0000000 30.0000000 0.050000 No Yes 70.0000 Yes 9.076470 7.398570 NGA
2020 35867 Region Metropolitana de Guadalajara Guadalajara Mexico Latin America No 4865122 POINT (-103.35 20.6597) Intending to incorporate in the next 2 years Yes 6 69 NA NA NA NA NA NA NA NA Yes 7 In progress Yes GPC This is our first year of calculation Not intending to undertake Yes Fixed level target In progress Yes In progress 0.2000 NA 53.200000 1.70 10.2000 4.3000 25.7500 0.5000 0.7000 3.9000 16.5000 In progress 30.0000000 2.0000000 10.0000000 20.0000000 38.000000 No No 89.0000 Intending to undertake in next 2 years 20.659700 -103.350000 MEX
2020 35867 Region Metropolitana de Guadalajara Guadalajara Mexico Latin America No 4865122 POINT (-103.35 20.6597) Intending to incorporate in the next 2 years Yes 6 69 NA NA NA NA NA NA NA NA Yes 7 In progress Yes GPC This is our first year of calculation Not intending to undertake Yes Base year emissions (absolute) target In progress Yes In progress 0.2000 NA 53.200000 1.70 10.2000 4.3000 25.7500 0.5000 0.7000 3.9000 16.5000 In progress 30.0000000 2.0000000 10.0000000 20.0000000 38.000000 No No 89.0000 Intending to undertake in next 2 years 20.659700 -103.350000 MEX
2020 54070 City of Eugene Eugene United States of America North America No 171245 POINT (-123.087 44.0519) Yes Yes 6 82 NA NA NA NA NA NA NA NA Do not know 3 Yes Yes GPC Increased Yes Not intending to undertake Base year emissions (absolute) target Yes Yes Not intending to undertake 0.0000 0.0000 0.000000 0.00 87.4000 8.8000 0.0000 3.0000 0.0000 0.8000 88.2000 Not intending to undertake 4.0000000 5.9000000 12.6000000 66.0000000 7.500000 No Yes 100.0000 Yes 44.051900 -123.087000 USA
2020 62791 City of Botosani Botosani Romania Europe No 106847 POINT (26.6658 47.7407) Yes Yes 6 49 NA NA NA NA NA NA NA NA NA 3 In progress NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 47.740700 26.665800 ROU
2020 834251 Municipality of Coronel Dominguez Argentina Latin America No 1220 Yes Yes 8 57 NA NA NA NA NA NA NA NA Do not know 9 Yes Yes GPC This is our first year of calculation Not intending to undertake Not intending to undertake Baseline scenario (business as usual) target Yes NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 42.506514 27.353750 ARG
2020 31446 Taipei City Government Taipei Taiwan, Greater China East Asia No 2645041 POINT (121.564 25.0375) Yes Yes 4 53 NA NA NA NA NA NA NA NA Yes 14 Yes Yes 2006 IPCC Guidelines Decreased Not intending to undertake Yes Base year emissions (absolute) target Yes Yes Yes 1.2000 37.3000 38.200000 0.00 3.7000 13.4000 1.9000 1.8000 1.7000 0.8000 6.2000 Yes 35.4000000 3.5000000 6.5000000 39.3000000 15.300000 Yes Yes 99.6600 Yes 25.037500 121.564000 TWN
2020 58621 Town of Blacksburg Blacksburg United States of America North America No 44678 POINT (-80.4139 37.2296) Yes Intending to undertake in the next 2 years 11 74 NA NA NA NA NA NA NA NA NA 11 NA Yes ICLEI Increased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 0.0000 71.9900 19.060000 0.00 3.9600 0.0000 0.0000 0.0000 0.0000 4.9900 8.9500 In progress NA NA NA NA NA No Do not know 100.0000 In progress 37.229600 -80.413900 USA
2020 31148 City of Amsterdam Amsterdam Netherlands Europe No 872380 POINT (4.89516 52.3702) Yes Yes 6 46 NA NA NA NA NA NA NA NA NA 9 Yes Yes NA Decreased In progress Yes Base year emissions (absolute) target Yes Yes Yes NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Yes Yes 100.0000 Yes 52.370200 4.895160 NLD
2020 31148 City of Amsterdam Amsterdam Netherlands Europe No 872380 POINT (4.89516 52.3702) Yes Yes 6 46 NA NA NA NA NA NA NA NA NA 9 Yes Yes NA Decreased In progress Yes Fixed level target Yes Yes Yes NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Yes Yes 100.0000 Yes 52.370200 4.895160 NLD
2020 832509 Slough Borough Council United Kingdom of Great Britain and Northern Ireland Europe Yes 149400 Intending to incorporate in the next 2 years Intending to undertake in the next 2 years 5 60 NA NA NA NA NA NA NA NA Yes 2 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA Intending to undertake in the next 2 years NA NA NA NA NA No No NA NA 52.770500 -1.204600 GBR
2020 826236 Prefeitura de Tremembé Tremembé Brazil Latin America No 47185 POINT (-45.548 -22.9576) Not intending to incorporate Not intending to undertake 2 17 1 1 0 0 0 0 0 2 Yes 5 Intending to undertake in the next 2 years Not intending to undertake NA NA NA NA No target Not intending to undertake Yes Intending to undertake in the next 2 years NA NA 4.000000 NA 95.0000 NA NA NA 1.0000 NA NA Intending to undertake in the next 2 years 20.0000000 10.0000000 5.0000000 60.0000000 5.000000 No Yes 100.0000 Intending to undertake in next 2 years -22.957600 -45.548000 BRA
2020 54265 City of Newcastle Newcastle Australia Southeast Asia and Oceania Yes 165571 Yes Yes 13 132 NA NA NA NA NA NA NA NA Yes 13 Yes Yes GPC Increased Not intending to undertake Yes Fixed level target In progress Yes Yes 1.6000 78.9200 0.200000 NA 5.0300 NA NA NA 5.6000 5.2500 NA Yes 8.6000000 NA 6.4000000 72.4000000 12.600000 No No 100.0000 Yes -32.928300 151.781700 AUS
2020 35864 Ekurhuleni Metropolitan Municipality Ekurhuleni South Africa Africa No 3894000 POINT (28.3462 -26.1777) Yes Yes 2 29 NA NA NA NA NA NA NA NA Yes 2 Yes Intending to undertake in the next 2 years NA NA NA NA Fixed level target Yes Yes In progress 0.0000 NA NA 0.00 0.0000 0.0000 0.0000 0.0000 NA 0.0000 NA Yes NA NA NA NA NA No Do not know 80.0000 In progress -26.177700 28.346200 ZAF
2020 35894 Ville de Montreal Montréal Canada North America No 2029379 POINT (-73.554 45.5087) Yes Yes 5 0 NA NA NA NA NA NA NA NA Yes 6 Yes Yes GPC Stayed the same Yes Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Not intending to undertake 0.8800 0.0000 0.030000 0.00 93.3400 0.3600 0.0000 0.0200 0.0000 5.3700 98.7100 Intending to undertake in the next 2 years 40.2000000 NA NA 56.3000000 17.600000 No Yes 100.0000 Yes 45.508700 -73.554000 CAN
2020 54650 Prefeitura de Palmas Palmas Brazil Latin America No 291855 POINT (-48.3243 -10.2491) Yes Yes 6 27 NA NA NA NA NA NA NA NA NA 1 Yes Yes GPC Do not know NA NA Base year emissions (absolute) target Yes NA Yes NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No Do not know 99.0000 NA -10.249100 -48.324300 BRA
2020 50383 Prefeitura de Sorocaba Sorocaba Brazil Latin America No 679378 POINT (-47.4221 -23.4775) Do not know In progress 5 111 NA NA NA NA NA NA NA NA NA 1 Yes Yes GPC Increased Not intending to undertake In progress Base year intensity target In progress Yes In progress 8.2000 4.1000 10.500000 0.00 65.3000 2.5000 2.5000 0.0000 0.1000 6.8000 72.2000 Intending to undertake in the next 2 years 26.0000000 NA 32.0000000 42.0000000 NA No Yes 99.5000 Yes -23.477500 -47.422100 BRA
2020 58346 Plymouth City Council Plymouth United Kingdom of Great Britain and Northern Ireland Europe No 256384 In progress Intending to undertake in the next 2 years 1 2 0 1 0 0 0 0 0 1 No 1 Intending to undertake in the next 2 years Yes 2006 IPCC Guidelines Increased Not intending to undertake Yes Fixed level target Yes Yes Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA Intending to undertake in the next 2 years NA NA NA NA NA No No 100.0000 Yes 50.371400 -4.142200 GBR
2020 60392 Municipalidad de San Isidro (Lima) San Isidro (Lima) Peru Latin America No 54206 POINT (-77.0273 -12.0977) Yes Intending to undertake in the next 2 years 3 50 NA NA NA NA NA NA NA NA NA 1 In progress Yes GPC Decreased Intending to undertake in the next 2 years NA Baseline scenario (business as usual) target Yes In progress Intending to undertake in the next 2 years 32.2300 0.0000 12.110000 0.00 37.4400 0.0000 18.2200 0.0000 0.0000 0.0000 37.4400 Yes 72.0000000 2.0000000 5.0000000 15.0000000 6.000000 NA Yes 100.0000 In progress -12.097700 -77.027300 PER
2020 43910 City of Columbus Columbus United States of America North America No 922223 POINT (-82.9988 39.9612) Yes Yes 6 121 0 1 0 1 2 2 0 6 Yes 11 Yes Yes GPC Decreased Intending to undertake in the next 2 years Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes 0.6000 49.8000 16.700000 0.00 0.9000 27.6000 0.4000 0.7000 0.1000 3.2000 4.2000 Yes 3.0600000 0.6900000 4.1000000 89.2700000 2.890000 No Yes 100.0000 Yes 39.961200 -82.998800 USA
2020 58413 City of Carmel, IN Carmel United States of America North America No 93510 POINT (-86.118 39.9784) Yes In progress 6 35 NA NA NA NA NA NA NA NA No 3 Intending to undertake in the next 2 years Yes GPC Increased Not intending to undertake Not intending to undertake No target In progress Yes Intending to undertake in the next 2 years 0.6000 44.4000 21.000000 0.00 0.9000 28.3000 0.3000 0.8000 0.1000 3.6000 4.6000 Not intending to undertake NA NA 14.2000000 85.8000000 NA No No 100.0000 In progress 39.978400 -86.118000 USA
2020 36039 Accra Metropolitan Assembly Accra Ghana Africa No 2514005 POINT (-0.16819 5.56543) Yes Yes 2 50 NA NA NA NA NA NA NA NA NA 2 Yes Yes GPC Stayed the same Intending to undertake in the next 2 years Yes No target In progress Yes Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Yes NA Intending to undertake in next 2 years 5.565430 -0.168190 GHA
2020 45219 Município de Aparecida Aparecida Brazil Latin America No 36279 POINT (-41.6667 -20.7) NA Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA 1 NA NA NA NA NA NA No target Intending to undertake in the next 2 years In progress Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA -20.700000 -41.666700 BRA
2020 54662 Prefeitura do Município de Maringá Maringá Brazil Latin America No 417010 POINT (-51.9383 -23.4257) In progress Do not know 1 2 NA NA NA NA NA NA NA NA NA 1 Do not know Intending to undertake in the next 2 years NA NA NA NA No target In progress In progress Do not know NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Do not know Do not know 99.0000 Yes -23.425700 -51.938300 BRA
2020 848476 Municipalidad de Cañas Costa Rica Latin America Yes 26201 Yes In progress 3 66 0 2 0 0 0 1 0 3 Yes 5 Do not know Yes Regional or country specific methodology This is our first year of calculation Not intending to undertake In progress Base year emissions (absolute) target In progress Yes Do not know NA NA NA NA NA NA NA NA NA NA NA Do not know NA NA NA NA NA Do not know Do not know 90.0000 Not intending to undertake 10.426905 -85.091794 CRI
2020 54029 City of Spokane Spokane United States of America North America No 215144 Do not know In progress NA NA NA NA NA NA NA NA NA NA NA 1 Intending to undertake in the next 2 years Yes GPC Do not know Not intending to undertake Intending to undertake in the next 2 years Base year emissions (absolute) target Intending to undertake in the next 2 years Do not know In progress NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Do not know Do not know NA In progress 40.768200 -74.234800 USA
2020 31153 City of Berlin Berlin Germany Europe No 3644800 POINT (13.405 52.52) Yes Yes 3 65 NA NA NA NA NA NA NA NA Yes 3 Yes Yes 2006 IPCC Guidelines Decreased Not intending to undertake Yes Base year emissions (absolute) target Yes Yes Yes 2.0000 56.0000 38.000000 0.00 0.0000 0.0000 1.0000 2.0000 1.0000 0.0000 1.0000 Yes 26.0000000 12.0000000 1.0000000 30.0000000 30.000000 Yes Yes 100.0000 Yes 52.520000 13.405000 DEU
2020 59996 Batangas City Batangas Philippines Southeast Asia and Oceania No 354170 POINT (121.058 13.7565) Yes Yes 4 51 NA NA NA NA NA NA NA NA NA 4 Yes Yes 2006 IPCC Guidelines Increased Intending to undertake in the next 2 years Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes NA NA NA NA NA NA NA NA 5.0000 NA NA Intending to undertake in the next 2 years NA NA NA NA NA Do not know Do not know 100.0000 In progress 13.756500 121.058000 PHL
2020 59996 Batangas City Batangas Philippines Southeast Asia and Oceania No 354170 POINT (121.058 13.7565) Yes Yes 4 51 NA NA NA NA NA NA NA NA NA 4 Yes Yes 2006 IPCC Guidelines Increased Intending to undertake in the next 2 years Intending to undertake in the next 2 years Baseline scenario (business as usual) target Yes Yes Yes NA NA NA NA NA NA NA NA 5.0000 NA NA Intending to undertake in the next 2 years NA NA NA NA NA Do not know Do not know 100.0000 In progress 13.756500 121.058000 PHL
2020 60385 Alcaldía de Villavicencio Colombia Latin America No 545302 Yes Yes 1 9 NA NA NA NA NA NA NA NA NA 15 Not intending to undertake Not intending to undertake NA NA NA NA No target Yes Yes Yes 1.0000 3.0000 8.000000 0.00 87.0000 0.0000 0.0000 0.0000 1.0000 0.0000 88.0000 NA NA NA NA NA NA Yes No 87.6700 Yes 4.142500 -73.629400 COL
2020 59642 City of Dublin, CA Dublin, CA United States of America North America No 65716 POINT (-121.93 37.7) In progress Intending to undertake in the next 2 years 6 120 0 1 0 1 0 0 0 2 Yes 6 Intending to undertake in the next 2 years Yes GPC Decreased Not intending to undertake Not intending to undertake Fixed level target Yes Yes Intending to undertake in the next 2 years 0.0000 0.0000 0.000000 1.00 21.0000 0.0000 0.0000 38.0000 15.0000 25.0000 62.0000 Not intending to undertake NA NA NA NA NA No No 100.0000 Yes 37.700000 -121.930000 USA
2020 58668 City of New Bedford, MA New Bedford United States of America North America No 95120 POINT (-70.9342 41.6362) In progress Yes 7 85 NA NA NA NA NA NA NA NA NA 7 Do not know Yes NA Decreased Do not know Not intending to undertake Base year emissions (absolute) target In progress Yes In progress 3.0000 8.0000 61.000000 0.00 7.0000 16.0000 2.0000 0.0000 1.0000 2.0000 10.0000 NA NA NA NA NA NA No Do not know 100.0000 Intending to undertake in next 2 years 41.636200 -70.934200 USA
2020 61790 City of Emeryville, CA Emeryville United States of America North America No 11885 POINT (-122.285 37.8313) Yes Yes 6 59 NA NA NA NA NA NA NA NA Yes 9 Yes Yes ICLEI Decreased Yes Yes Base year emissions (absolute) target Yes In progress In progress 4.0000 0.0000 15.000000 4.00 16.0000 33.0000 0.0000 0.0000 18.0000 10.0000 48.0000 In progress 26.1000000 3.3000000 2.2000000 57.6000000 5.800000 No Yes 99.0000 Not intending to undertake 37.831300 -122.285000 USA
2020 54075 City of Lakewood Lakewood United States of America North America No 156500 POINT (-105.081 39.7047) Yes Intending to undertake in the next 2 years 10 82 0 1 1 0 0 1 0 3 Yes 7 Yes Yes GPC Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 0.0000 33.0000 37.000000 0.00 1.0000 0.0000 0.0000 0.0000 4.0000 25.0000 30.0000 Yes 3.9000000 0.5000000 6.5000000 87.3000000 1.800000 No No 100.0000 Not intending to undertake 39.704700 -105.081000 USA
2020 54670 Prefeitura Municipal de Capivari Capivari Brazil Latin America No 48576 Intending to incorporate in the next 2 years Yes 1 1 NA NA NA NA NA NA NA NA No 3 Do not know Intending to undertake in the next 2 years NA NA NA NA No target In progress Yes Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA Do not know NA NA NA NA NA No Yes 99.0000 Yes -21.538796 -42.180978 BRA
2020 74463 Village of Park Forest, IL United States of America North America Yes 21210 Yes Yes 6 65 NA NA NA NA NA NA NA NA Yes 5 Yes Yes ICLEI Stayed the same Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes In progress Not intending to undertake 0.3000 27.3000 9.100000 0.00 0.5000 15.1000 0.2000 0.4000 0.1000 47.0000 47.6000 Yes NA NA NA NA NA No No 100.0000 Not intending to undertake 34.781300 -111.760600 USA
2020 69999 Greifswald Greifswald Germany Europe No 57899 POINT (12.3923 54.0865) Yes Yes 3 24 NA NA NA NA NA NA NA NA NA 1 Yes Yes NA Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes In progress NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No NA NA NA 54.086500 12.392300 DEU
2020 14344 City of Park City, UT Park City United States of America North America No 8376 POINT (-111.498 40.6461) Yes Yes 5 63 NA NA NA NA NA NA NA NA Yes 14 In progress Yes GPC Decreased Yes Not intending to undertake Fixed level target Yes Yes Yes 0.4300 61.9600 15.400000 0.38 5.1800 0.0000 0.0000 9.4700 0.0800 7.1000 12.7400 In progress 3.7000000 0.9000000 10.3000000 76.2000000 8.900000 No No 100.0000 Yes 40.646100 -111.498000 USA
2020 60279 Prefeitura de Campos de Goytacazes Campos de Goytacazes Brazil Latin America No 483970 POINT (-41.2683 -21.8323) Yes NA 6 75 NA NA NA NA NA NA NA NA NA 1 NA NA NA NA NA NA No target NA Yes NA 1.0000 NA 3.000000 NA 95.0000 NA NA NA 1.0000 NA NA NA NA NA NA NA NA NA NA NA NA -21.832300 -41.268300 BRA
2020 73725 Guaminí Argentina Latin America No 11826 Intending to incorporate in the next 2 years Yes 8 130 NA NA NA NA NA NA NA NA No 9 Yes Yes GPC Decreased Not intending to undertake Not intending to undertake Baseline scenario (business as usual) target Yes NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA -33.883600 -60.566900 ARG
2020 826212 Junta intermunicipal para la gestión integral de la cuenca del Río Coahuayana (JIRCO) Mexico Latin America No 285774 Yes Do not know 2 37 1 0 0 0 0 0 0 1 Yes 1 Yes Yes 2006 IPCC Guidelines Increased Not intending to undertake Intending to undertake in the next 2 years No target Intending to undertake in the next 2 years Intending to undertake in the next 2 years Intending to undertake in the next 2 years 3.0000 7.0000 7.000000 1.00 17.0000 0.0000 17.0000 41.0000 1.0000 6.0000 25.0000 Intending to undertake in the next 2 years 65.0000000 5.0000000 20.0000000 10.0000000 NA No Yes 93.0000 Not intending to undertake 18.520000 -103.380000 MEX
2020 54060 City of Greater Sudbury / Grand Sudbury Sudbury Canada North America No 161531 POINT (-80.9645 46.5268) In progress Yes 8 80 NA NA NA NA NA NA NA NA NA 8 In progress Yes GPC NA NA NA Base year emissions (absolute) target In progress Yes In progress NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No NA 100.0000 Yes 46.526800 -80.964500 CAN
2020 840178 Michuhol-gu Municipal Government of Incheon Republic of Korea East Asia Yes 425436 Do not know Yes NA NA NA NA NA NA NA NA NA NA No 1 Do not know Intending to undertake in the next 2 years NA NA NA NA NA NA In progress NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 37.463600 126.650200 KOR
2020 54692 Prefeitura Municipal de Sertãozinho Sertãozinho Brazil Latin America No 125815 POINT (-47.9947 -21.1451) Yes Yes 4 60 0 0 0 0 0 1 0 1 Yes 1 Do not know Not intending to undertake NA NA NA NA No target Do not know Yes Do not know 8.6000 0.0000 0.000000 14.91 60.7400 0.0000 0.0000 3.7000 3.4200 8.6300 87.7000 Do not know NA NA NA NA NA No Yes 99.0000 In progress -21.145100 -47.994700 BRA
2020 50375 Ayuntamiento de Chihuahua Chihuahua Mexico Latin America No 946900 POINT (-106.076 28.6368) Yes Yes 1 25 0 0 1 0 0 1 0 2 Do not know 4 Yes Yes 2006 IPCC Guidelines Decreased Intending to undertake in the next 2 years Not intending to undertake Fixed level target Yes Yes Do not know NA NA NA 0.00 NA 0.0000 NA NA NA NA NA Do not know NA NA NA NA NA No No 93.0000 Intending to undertake in next 2 years 28.636800 -106.076000 MEX
2020 58627 City of Alton, IL Alton United States of America North America No 26581 POINT (-90.1843 38.8906) Do not know Not intending to undertake 4 52 NA NA NA NA NA NA NA NA No 1 Do not know Intending to undertake in the next 2 years NA NA NA NA No target Yes Do not know Do not know NA NA NA NA NA NA NA NA NA NA NA Do not know NA NA NA NA NA No No 100.0000 Not intending to undertake 38.890600 -90.184300 USA
2020 50551 City of Long Beach Long Beach United States of America North America No 470130 POINT (-118.194 33.7701) In progress Yes 4 32 NA NA NA NA NA NA NA NA Yes 3 In progress Yes GPC This is our first year of calculation Yes Not intending to undertake No target In progress Yes Yes 0.0000 0.0000 20.000000 8.00 9.0000 6.0000 0.0000 34.0000 13.0000 10.0000 40.0000 In progress NA NA NA NA NA No No NA Yes 33.770100 -118.194000 USA
2020 54037 City of Des Moines Des Moines United States of America North America No 229062 Yes Yes 7 52 NA NA NA NA NA NA NA NA Yes 1 Intending to undertake in the next 2 years Yes ICLEI Increased Not intending to undertake Not intending to undertake Fixed level target Intending to undertake in the next 2 years Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA In progress NA NA NA NA NA NA Do not know NA Yes 41.552200 -93.780500 USA
2020 54641 Prefeitura de Limeira Limeira Brazil Latin America No 276022 POINT (-47.3974 -22.5665) NA NA 10 105 NA NA NA NA NA NA NA NA NA 1 Do not know NA NA NA NA NA No target NA Yes NA 2.0000 2.0000 3.000000 NA 90.0000 NA NA NA 3.0000 3.0000 NA NA NA NA NA NA NA NA NA NA NA -22.566500 -47.397400 BRA
2020 54085 City of Savannah Savannah United States of America North America No 145674 POINT (-81.0998 32.0835) Yes In progress 7 127 NA NA NA NA NA NA NA NA Yes 2 Intending to undertake in the next 2 years Yes ICLEI NA NA Not intending to undertake No target Intending to undertake in the next 2 years Yes Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No Do not know 98.0000 Yes 32.083500 -81.099800 USA
2020 54633 Prefeitura de Lorena Lorena Brazil Latin America No 88706 POINT (-45.1201 -22.7339) Yes In progress 2 34 NA NA NA NA NA NA NA NA Yes 3 Do not know Intending to undertake in the next 2 years NA NA NA NA No target Do not know Do not know Do not know 0.0000 0.0000 0.000000 0.00 100.0000 0.0000 0.0000 0.0000 0.0000 0.0000 100.0000 Do not know NA NA NA NA NA No Do not know 100.0000 In progress -22.733900 -45.120100 BRA
2020 43940 Malmö Stad Malmö Sweden Europe No 344166 POINT (13.0038 55.605) Yes Yes 4 0 NA NA NA NA NA NA NA NA Yes 5 Yes Yes GPC Increased Yes Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 9.5700 0.4100 23.040000 0.00 22.1200 21.7000 0.1400 4.4000 0.0100 18.6100 40.7400 Yes 25.5000000 25.5000000 0.0000000 33.7000000 13.700000 Yes Yes 100.0000 Not intending to undertake 55.605000 13.003800 SWE
2020 31150 Bangkok Metropolitan Administration Bangkok Thailand Southeast Asia and Oceania No 8420887 POINT (100.556 13.7712) Yes Yes 5 77 NA NA NA NA NA NA NA NA No 1 Yes Yes GPC Stayed the same Do not know Not intending to undertake Base year emissions (absolute) target Yes Yes Not intending to undertake 6.6000 17.7000 60.200000 0.00 6.2000 0.0000 0.1000 1.6000 5.6000 2.0000 13.8000 Not intending to undertake 24.0000000 2.0000000 8.0000000 65.0000000 2.000000 No NA 99.0000 Not intending to undertake 13.771200 100.556000 THA
2020 840521 City of Denizli Turkey Europe No 1027782 Yes Yes 5 86 NA NA NA NA NA NA NA NA Do not know 11 Yes Yes GPC NA NA NA Baseline scenario (business as usual) target Yes Intending to undertake in the next 2 years Do not know NA NA NA NA NA NA NA NA NA NA NA Do not know 31.4000000 1.0000000 1.6000000 27.2000000 38.800000 No Yes 99.0000 NA 37.773100 29.087800 TUR
2020 35865 Municipality of Fortaleza Fortaleza Brazil Latin America No 2643247 POINT (-48.3936 -10.7183) Yes Yes 4 64 NA NA NA NA NA NA NA NA Yes 4 Yes Yes GPC Decreased Do not know Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes 8.7100 2.2000 7.700000 0.00 60.7600 1.1800 5.8000 5.0700 0.7700 7.8100 69.3400 Yes 22.5000000 3.0000000 3.5000000 36.0000000 32.000000 Do not know Yes 80.0000 Yes -10.718300 -48.393600 BRA
2020 74401 City of Encinitas, CA Encinitas United States of America North America No 62038 POINT (-117.293 33.0454) Yes Yes 6 100 0 0 1 0 0 0 0 1 Yes 14 Yes Yes Regional or country specific methodology Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 2.0000 0.0000 54.000000 0.00 0.0000 0.0000 0.0000 10.0000 18.0000 16.0000 34.0000 Yes NA NA NA NA NA No No 100.0000 Yes 33.045400 -117.293000 USA
2020 55801 City of West Palm Beach West Palm Beach United States of America North America No 115176 POINT (-80.0534 26.7153) Yes Yes 8 130 0 1 0 0 1 0 0 2 Yes 9 In progress Yes GPC Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Not intending to undertake 0.0000 2.3600 73.240000 0.00 0.0000 22.6400 0.3100 0.0000 1.4500 0.0000 1.4500 Intending to undertake in the next 2 years NA NA NA NA NA No No 100.0000 In progress 26.715300 -80.053400 USA
2020 54521 BCP Council Bournemouth United Kingdom of Great Britain and Northern Ireland Europe No 395300 POINT (-1.88076 50.7192) Yes Yes 6 101 0 1 0 1 0 0 0 2 Yes 7 Yes Yes GPC This is our first year of calculation Intending to undertake in the next 2 years Yes Base year emissions (absolute) target Yes Yes Yes 4.0000 21.0000 29.000000 4.00 2.0000 19.0000 2.0000 5.0000 10.0000 4.0000 20.0000 In progress 16.0000000 2.0000000 0.0000000 77.0000000 5.000000 No No 100.0000 Yes 50.719200 -1.880760 GBR
2020 54521 BCP Council Bournemouth United Kingdom of Great Britain and Northern Ireland Europe No 395300 POINT (-1.88076 50.7192) Yes Yes 6 101 0 1 0 1 0 0 0 2 Yes 7 Yes Yes GPC This is our first year of calculation Intending to undertake in the next 2 years Yes Fixed level target Yes Yes Yes 4.0000 21.0000 29.000000 4.00 2.0000 19.0000 2.0000 5.0000 10.0000 4.0000 20.0000 In progress 16.0000000 2.0000000 0.0000000 77.0000000 5.000000 No No 100.0000 Yes 50.719200 -1.880760 GBR
2020 60273 Prefeitura de Extrema Extrema Brazil Latin America No 36225 POINT (-46.328 -22.8403) Intending to incorporate in the next 2 years Intending to undertake in the next 2 years 4 28 NA NA NA NA NA NA NA NA Do not know 4 Intending to undertake in the next 2 years Yes GPC This is our first year of calculation Do not know Intending to undertake in the next 2 years No target Intending to undertake in the next 2 years Yes In progress 8.5000 3.7000 8.600000 0.00 66.6000 2.5000 1.9000 0.0000 0.5400 7.6000 74.7400 In progress NA NA NA NA NA No Do not know 94.3500 Yes -22.840300 -46.328000 BRA
2020 848127 Santa Bárbara (Costa Rica) Costa Rica Latin America Yes 42778 Intending to incorporate in the next 2 years Intending to undertake in the next 2 years 1 4 0 1 0 0 0 0 0 1 No 1 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target Not intending to undertake Intending to undertake in the next 2 years Not intending to undertake NA NA NA NA NA NA NA NA NA NA NA Do not know NA NA NA NA NA No No 100.0000 In progress 10.082352 -84.146327 CRI
2020 51374 Prefeitura de Rio Branco Rio Branco Brazil Latin America No 407319 POINT (-40.3776 -20.3338) Yes Yes 1 9 NA NA NA NA NA NA NA NA Yes 1 In progress In progress GPC NA NA NA No target In progress In progress Intending to undertake in the next 2 years NA NA NA NA NA NA 100.0000 NA NA NA NA Yes NA NA NA NA NA No No 100.0000 In progress -20.333800 -40.377600 BRA
2020 834126 Dobong-gu Municipal Government Republic of Korea East Asia Yes 336698 Intending to incorporate in the next 2 years Yes 2 24 1 0 0 0 0 0 0 1 No 2 Yes Yes Regional or country specific methodology Decreased Yes Do not know Base year emissions (absolute) target Intending to undertake in the next 2 years Yes Intending to undertake in the next 2 years 3.1100 29.5000 31.600000 0.14 3.7000 18.5000 3.0000 8.7100 1.3800 0.3600 5.5800 In progress 65.1000000 NA 10.4000000 24.5000000 NA No Do not know 100.0000 Not intending to undertake 37.668600 127.046600 KOR
2020 60638 Walvis Bay Municipality Walvis Bay Namibia Africa No 100000 POINT (12.5247 -22.9389) Yes Yes 1 25 NA NA NA NA NA NA NA NA NA 1 In progress Intending to undertake in the next 2 years NA NA NA NA No target In progress Do not know Do not know NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Do not know Do not know 85.0000 In progress -22.958400 14.505800 NAM
2020 36477 Comune di Lucca Lucca Italy Europe No 90107 POINT (10.6174 43.8399) Yes Yes 1 9 NA NA NA NA NA NA NA NA NA 1 In progress In progress NA NA NA NA NA Yes Yes In progress NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Yes NA 100.0000 NA 43.839900 10.617400 ITA
2020 58483 City of Surrey Canada North America Yes 557310 Yes Yes 5 48 2 2 1 2 0 0 0 7 Yes 7 Yes In progress GPC NA NA NA Fixed level target In progress Yes Yes 6.0000 0.0000 2.000000 0.00 90.0000 0.0000 1.0000 0.0000 0.0000 1.0000 91.0000 In progress NA NA NA NA NA No Yes 99.0000 Not intending to undertake 49.190000 -122.848900 CAN
2020 54104 City of Boulder Boulder United States of America North America No 107100 POINT (-105.252 40.0274) Yes Yes 6 100 0 1 1 0 0 1 0 3 Yes 5 Yes Yes GPC Decreased Intending to undertake in the next 2 years Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 0.0000 39.1000 32.700000 0.00 1.4000 0.0000 0.0000 0.0000 3.3000 23.5000 28.2000 Yes 5.0000000 17.0000000 0.0000000 58.0000000 20.000000 No Yes 100.0000 Yes 40.027400 -105.252000 USA
2020 73645 KwaDukuza South Africa Africa No 276719 Yes In progress 35 342 NA NA NA NA NA NA NA NA NA 3 Yes Yes GPC Decreased Do not know Yes Baseline scenario (business as usual) target Yes In progress In progress NA NA NA NA NA 0.0000 NA NA NA NA NA In progress 42.8800000 0.0800000 44.8200000 NA 6.600000 No No 77.5200 NA -29.335722 31.296489 ZAF
2020 49327 City of Providence Providence United States of America North America No 179883 POINT (-71.4128 41.824) Yes Yes 12 174 0 1 0 0 0 0 0 1 Yes 11 Not intending to undertake Yes ICLEI Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 0.1000 6.8000 35.100000 0.00 2.6000 22.6000 4.5000 18.8000 2.7000 6.8000 12.1000 Yes 6.5000000 0.8000000 18.1000000 63.6000000 11.000000 No No 100.0000 Yes 41.824000 -71.412800 USA
2020 826207 Junta Intermunicipal de Medio Ambiente Region Valles (JIMAV) JIMAV Mexico Latin America No 371457 POINT (-104.367 19.7682) Yes Yes 4 91 0 0 1 0 0 1 0 2 Yes 4 Yes Yes 2006 IPCC Guidelines This is our first year of calculation Intending to undertake in the next 2 years Yes Baseline scenario (business as usual) target Yes Yes Yes 0.0000 0.0000 0.000000 0.00 0.0000 0.0000 100.0000 0.0000 0.0000 0.0000 0.0000 In progress NA NA NA NA NA No Do not know 95.0000 In progress 19.768200 -104.367000 MEX
2020 50566 City of Anchorage Anchorage United States of America North America No 295365 POINT (-149.9 61.2181) Intending to incorporate in the next 2 years In progress 3 32 0 1 0 0 0 0 0 1 Yes 3 Yes Yes GPC This is our first year of calculation Intending to undertake in the next 2 years Intending to undertake in the next 2 years Base year emissions (absolute) target Yes In progress Intending to undertake in the next 2 years 0.0000 0.0000 86.300000 0.00 10.9000 0.0000 0.0000 1.4000 0.0000 1.4000 12.3000 Intending to undertake in the next 2 years 1.0000000 2.0000000 NA 88.0000000 9.000000 No No 99.0000 Not intending to undertake 61.218100 -149.900000 USA
2020 50571 City of Victoria Victoria Canada North America No 94000 POINT (-123.366 48.4284) Yes Yes 9 22 NA NA NA NA NA NA NA NA Yes 8 Yes Yes GPC Decreased Yes Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes 2.0000 0.0000 2.000000 0.00 96.0000 0.0000 0.0000 0.0000 0.0000 0.0000 96.0000 Not intending to undertake NA NA NA NA NA No Yes 100.0000 Not intending to undertake 48.428400 -123.366000 CAN
2020 54290 Qingdao Municipal Government Qingdao China East Asia No 9499800 POINT (120.356 36.1105) Yes Yes 1 12 NA NA NA NA NA NA NA NA NA 1 In progress Yes GPC Increased NA NA Base year intensity target Yes Yes Yes NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No NA 100.0000 Yes 36.110500 120.356000 CHN
2020 834406 Municipality of San Pedro Tlaquepaque Mexico Latin America No 664193 Yes Yes 3 66 0 1 0 0 0 0 0 1 Yes 1 In progress In progress 2006 IPCC Guidelines NA NA NA Base year emissions (absolute) target Not intending to undertake Yes Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA Yes NA NA NA NA NA No Yes 95.0000 Intending to undertake in next 2 years 20.624300 103.321200 MEX
2020 54349 Balikpapan City Government Indonesia Southeast Asia and Oceania No 655178 POINT (116.831 -1.26539) Yes Yes 2 34 NA NA NA NA NA NA NA NA Yes 2 Yes Yes 2006 IPCC Guidelines Increased Intending to undertake in the next 2 years Yes Baseline scenario (business as usual) target Yes Yes Intending to undertake in the next 2 years 0.0000 0.0000 2.040000 0.00 0.0000 0.0000 51.4800 0.0000 46.4800 0.0000 46.4800 Intending to undertake in the next 2 years 0.0000000 0.5000000 17.5000000 80.0000000 2.000000 Yes No 76.0000 In progress -1.265390 116.831000 IDN
2020 839667 Municipio de Guanagazapa Guatemala Latin America No 20083 Yes Yes 1 2 NA NA NA NA NA NA NA NA NA 1 Intending to undertake in the next 2 years Yes GPC Do not know Do not know Not intending to undertake No target Do not know NA Not intending to undertake NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Do not know Do not know 85.0000 Intending to undertake in next 2 years 14.228600 -90.642900 GTM
2020 826237 Alcaldia de Madrid Madrid (Colombia) Colombia Latin America No 127138 POINT (-74.2642 4.73245) Yes In progress 4 39 NA NA NA NA NA NA NA NA No 2 In progress Yes GPC Increased Yes Yes No target In progress In progress Intending to undertake in the next 2 years 0.0000 0.0000 0.000000 0.00 100.0000 0.0000 0.0000 0.0000 0.0000 0.0000 100.0000 Not intending to undertake 30.0000000 15.0000000 15.0000000 30.0000000 10.000000 Do not know Do not know 90.0000 Intending to undertake in next 2 years 4.732450 -74.264200 COL
2020 840039 Arequito Argentina Latin America No 6836 Intending to incorporate in the next 2 years Yes 6 49 NA NA NA NA NA NA NA NA NA 1 In progress Yes GPC NA NA Do not know No target Do not know NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA -29.144300 -59.643800 ARG
2020 50208 Adana Metropolitan Municipality Adana Turkey Europe Yes 2200000 POINT (35.334 36.995) Yes Yes 1 25 NA NA NA NA NA NA NA NA Yes 1 NA Yes NA NA NA NA NA NA NA In progress NA NA NA NA NA NA NA NA NA NA NA NA 10.7000000 1.0000000 0.0000000 50.0000000 10.000000 NA Yes 80.0000 Yes 36.995000 35.334000 TUR
2020 834229 Municipality of Bragado Argentina Latin America No 41336 NA In progress 13 74 NA NA NA NA NA NA NA NA NA 1 NA Yes GPC This is our first year of calculation Not intending to undertake Not intending to undertake NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 42.506514 27.353750 ARG
2020 36262 Comune di Genova Genova Italy Europe No 575577 POINT (9.31841 44.348) Yes Yes 4 68 NA NA NA NA NA NA NA NA Yes 3 In progress Yes 2006 IPCC Guidelines Decreased Do not know Yes Base year emissions (absolute) target Yes Yes Yes NA NA 4.228471 NA NA NA NA NA 8.5000 NA NA In progress NA NA NA NA NA Yes Yes 100.0000 Yes 44.348000 9.318410 ITA
2020 834058 Bogor Regency Indonesia Southeast Asia and Oceania No 5965410 Yes Yes 4 82 0 0 0 1 0 0 0 1 Yes 8 Yes In progress 2006 IPCC Guidelines NA NA NA No target Yes Yes Do not know 0.0000 0.0000 0.000000 0.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 In progress NA NA NA NA NA Do not know No 90.0000 In progress -6.600000 106.800000 IDN
2020 74488 City of Beverly, MA United States of America North America No 40152 In progress Yes 4 55 NA NA NA NA NA NA NA NA No 6 Yes In progress ICLEI NA NA NA No target In progress Yes In progress NA NA 44.000000 NA NA NA 4.0000 51.0000 1.0000 NA NA Intending to undertake in the next 2 years NA NA NA NA NA No No 100.0000 Intending to undertake in next 2 years 40.768200 -74.234800 USA
2020 42384 Göteborgs Stad Göteborg Sweden Europe Yes 579281 Yes Intending to undertake in the next 2 years 3 12 0 1 0 0 0 1 0 2 Yes 2 Yes Yes GPC Decreased Yes Not intending to undertake Base year intensity target Yes Yes Yes 3.1300 0.2300 0.550000 0.00 38.9400 40.9400 0.1900 5.8400 0.2400 9.9400 49.1200 Yes NA NA NA NA NA Yes Yes 99.0000 Yes 57.671700 11.981000 SWE
2020 42384 Göteborgs Stad Göteborg Sweden Europe Yes 579281 Yes Intending to undertake in the next 2 years 3 12 0 1 0 0 0 1 0 2 Yes 2 Yes Yes GPC Decreased Yes Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 3.1300 0.2300 0.550000 0.00 38.9400 40.9400 0.1900 5.8400 0.2400 9.9400 49.1200 Yes NA NA NA NA NA Yes Yes 99.0000 Yes 57.671700 11.981000 SWE
2020 46470 Ayuntamiento de Vitoria-Gasteiz Vitoria-Gasteiz Spain Europe No 252574 POINT (-2.67 42.84) Yes Yes 3 17 0 0 0 1 1 0 0 2 Yes 5 In progress Yes 2006 IPCC Guidelines Decreased Intending to undertake in the next 2 years Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes 3.0000 4.3000 30.300000 0.00 10.0000 22.6000 1.2000 1.4000 5.7000 21.5000 37.2000 Intending to undertake in the next 2 years 8.3200000 12.2700000 0.2700000 24.7700000 54.360000 No Yes 100.0000 Yes 42.840000 -2.670000 ESP
2020 840924 Prefeitura de Alexânia Brazil Latin America No 20033 In progress In progress NA NA NA NA NA NA NA NA NA NA Yes 1 In progress In progress NA NA NA NA No target Do not know Yes Do not know NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Do not know No NA In progress -12.250000 -38.970000 BRA
2020 60409 Municipalidad Provincial de Callao Peru Latin America No 994494 Yes Yes 6 95 NA NA NA NA NA NA NA NA Yes 11 Yes In progress GPC NA NA NA No target In progress In progress In progress NA NA NA NA NA NA NA NA NA NA NA Intending to undertake in the next 2 years NA NA NA NA NA No Yes 96.0000 In progress -3.785283 -80.063983 PER
2020 832078 Município de Mafra Mafra Portugal Europe No 81961 POINT (-9.32771 38.9385) In progress Yes 3 50 0 0 0 0 0 1 0 1 No 2 Yes Intending to undertake in the next 2 years NA NA NA NA No target NA In progress Intending to undertake in the next 2 years NA NA NA 0.00 NA 0.0000 NA 0.0000 NA NA NA In progress NA NA NA NA NA No Do not know 100.0000 Intending to undertake in next 2 years 38.938500 -9.327710 PRT
2020 42120 City of Salvador Salvador Brazil Latin America No 2872347 POINT (-38.5023 -12.973) Yes Yes 7 79 0 1 0 0 1 0 0 2 Yes 7 In progress Yes GPC Decreased Intending to undertake in the next 2 years Yes No target In progress Yes In progress 3.0000 5.0000 6.000000 NA 54.0000 NA 7.0000 NA 12.0000 13.0000 NA In progress 38.6000000 0.5000000 2.9000000 20.0000000 38.000000 No Yes 93.0000 In progress -12.973000 -38.502300 BRA
2020 50389 Prefeitura de Maceió Maceió Brazil Latin America No 1021127 POINT (-35.718 -9.67342) Intending to incorporate in the next 2 years Intending to undertake in the next 2 years 5 95 NA NA NA NA NA NA NA NA Do not know 1 In progress Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years Yes Intending to undertake in the next 2 years NA NA 10.000000 NA 90.0000 NA NA NA NA NA NA In progress 55.0000000 5.0000000 9.0000000 30.0000000 1.000000 Yes No 80.0000 Yes -9.673420 -35.718000 BRA
2020 60258 Prefeitura de Brusque Brusque Brazil Latin America No 137600 POINT (-48.9207 -27.0936) In progress Do not know 3 41 0 0 0 1 1 1 0 3 Yes 2 Do not know Intending to undertake in the next 2 years NA NA NA NA No target Yes Do not know Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA Intending to undertake in the next 2 years 12.0000000 5.0000000 1.0000000 79.0000000 3.000000 No Do not know 90.0000 In progress -27.093600 -48.920700 BRA
2020 826182 Ayuntamiento de Tonalá Mexico Latin America No 477117 Yes Yes 5 45 NA NA NA NA NA NA NA NA NA 4 Not intending to undertake Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years In progress Yes 0.0000 45.0000 80.000000 0.00 0.0000 0.0000 0.0000 NA NA 0.0000 NA In progress 50.0000000 5.0000000 130.0000000 NA 50.000000 No No 10.0000 Intending to undertake in next 2 years 19.333300 -96.483300 MEX
2020 826380 Junta Intermunicipal de la Cuenca Baja del Rio Ayuquila (JIRA) Mexico Latin America No 144000 Yes Yes 1 20 NA NA NA NA NA NA NA NA No 2 In progress Not intending to undertake NA NA NA NA NA NA Not intending to undertake In progress NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No Do not know NA In progress 37.985009 -103.543832 MEX
2020 55419 City of Miramar Miramar United States of America North America No 140823 POINT (-80.3036 25.9861) In progress Yes 5 44 NA NA NA NA NA NA NA NA NA 1 Intending to undertake in the next 2 years Yes ICLEI This is our first year of calculation NA Yes No target NA Yes Intending to undertake in the next 2 years NA 2.3700 73.610000 NA NA 21.9800 0.1700 NA 1.8700 NA NA Do not know NA NA NA NA NA No Yes 100.0000 Yes 25.986100 -80.303600 USA
2020 54498 Ayuntamiento de Murcia Murcia Spain Europe No 453258 POINT (-1.00495 37.799) Yes Yes 4 82 NA NA NA NA NA NA NA NA Yes 8 Yes Yes Regional or country specific methodology Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Intending to undertake in the next 2 years Yes 1.7000 5.0000 21.900000 0.00 9.0000 21.2000 13.6000 1.5000 5.5000 20.6000 35.1000 Yes NA NA NA NA NA No NA 100.0000 Yes 37.799000 -1.004950 ESP
2020 826201 Ayuntamiento de Zapopan Mexico Latin America Yes 1332272 Yes In progress 8 123 NA NA NA NA NA NA NA NA Yes 7 In progress In progress 2006 IPCC Guidelines NA NA NA Baseline scenario (business as usual) target In progress Yes In progress 5.7200 4.3100 19.730000 1.75 1.8000 2.4100 62.3900 0.7900 0.3700 0.7300 4.6500 In progress NA NA NA NA NA No Yes 97.0000 Intending to undertake in next 2 years 26.116700 -103.450000 MEX
2020 60284 Prefeitura de Angra dos Reis Angra dos Reis Brazil Latin America No 169511 POINT (-44.2442 -22.9983) In progress Do not know 3 53 0 0 0 0 1 0 0 1 Yes 3 Do not know Not intending to undertake NA NA NA NA No target NA Do not know Do not know 1.0000 3.0000 13.000000 0.00 70.0000 2.0000 5.0000 5.0000 1.0000 0.0000 71.0000 Do not know NA NA NA NA NA Do not know Do not know NA NA -22.998300 -44.244200 BRA
2020 831152 Municipio de San Pedro de Urabá San Pedro de Urabá Colombia Latin America No 37255 POINT (8.34552 -76.3414) Not intending to incorporate Intending to undertake in the next 2 years 2 19 NA NA NA NA NA NA NA NA NA 1 Do not know Intending to undertake in the next 2 years NA NA NA NA No target Do not know NA Do not know 0.0000 0.0000 0.000000 0.00 100.0000 0.0000 0.0000 0.0000 0.0000 0.0000 100.0000 NA NA NA NA NA NA No Do not know 38.0000 Intending to undertake in next 2 years 8.277888 -76.383079 COL
2020 54617 Alcaldia de Pereira Pereira Colombia Latin America No 472000 POINT (-75.6906 4.80871) Yes In progress 5 58 NA NA NA NA NA NA NA NA NA 5 Yes In progress GPC NA NA NA Baseline scenario (business as usual) target Not intending to undertake Yes In progress NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 45.0000000 NA No No 99.7500 In progress 4.808710 -75.690600 COL
2020 50559 City of St Catharines, ON St Catharines Canada North America No 133113 POINT (-79.2469 43.1594) In progress Yes 4 42 0 0 0 1 0 0 0 1 Yes 1 In progress Yes GPC Decreased Not intending to undertake In progress Base year intensity target Intending to undertake in the next 2 years Yes Do not know 1.0000 0.0000 3.000000 0.00 26.0000 60.0000 1.0000 0.0000 2.0000 7.0000 35.0000 Yes NA NA NA NA NA No Yes 100.0000 Intending to undertake in next 2 years 43.159400 -79.246900 CAN
2020 50543 Halifax Regional Municipality Halifax Canada North America No 421939 POINT (-63.5714 44.6478) Yes Yes 6 80 0 2 0 0 1 0 0 3 No 5 Yes Yes GPC Decreased Intending to undertake in the next 2 years Not intending to undertake Fixed level target Yes In progress Yes 4.1000 57.8000 9.900000 0.00 10.8000 0.0000 4.7000 0.0000 0.0000 12.7000 23.5000 Yes 13.0000000 1.0000000 NA 77.0000000 9.000000 No Yes 99.9500 Not intending to undertake 44.647800 -63.571400 CAN
2020 50543 Halifax Regional Municipality Halifax Canada North America No 421939 POINT (-63.5714 44.6478) Yes Yes 6 80 0 2 0 0 1 0 0 3 No 5 Yes Yes GPC Decreased Intending to undertake in the next 2 years Not intending to undertake Base year emissions (absolute) target Yes In progress Yes 4.1000 57.8000 9.900000 0.00 10.8000 0.0000 4.7000 0.0000 0.0000 12.7000 23.5000 Yes 13.0000000 1.0000000 NA 77.0000000 9.000000 No Yes 99.9500 Not intending to undertake 44.647800 -63.571400 CAN
2020 845132 Prefeitura de Goiás (Goiás Velho) Brazil Latin America Yes 24727 In progress Intending to undertake in the next 2 years 4 74 0 0 1 0 0 0 0 1 No 1 Intending to undertake in the next 2 years In progress ICLEI NA NA NA No target Intending to undertake in the next 2 years Yes Do not know 0.0000 0.0000 0.000000 0.00 100.0000 0.0000 0.0000 0.0000 0.0000 0.0000 100.0000 In progress NA NA NA NA NA No Yes 100.0000 In progress -21.538796 -42.180978 BRA
2020 843399 Wandsworth Council United Kingdom of Great Britain and Northern Ireland Europe Yes 332500 Yes In progress 9 24 0 1 1 0 0 0 0 2 Yes 8 Yes Yes GPC This is our first year of calculation Yes Yes Base year emissions (absolute) target Yes In progress Not intending to undertake 8.8100 3.1100 26.760000 0.00 2.2800 11.9000 0.1700 5.8300 13.1600 27.9800 43.4200 Not intending to undertake 31.2000000 3.5000000 3.0000000 27.4000000 34.900000 Yes Yes 100.0000 Not intending to undertake 51.455000 -0.192000 GBR
2020 35857 City of Cincinnati Cincinnati United States of America North America No 302605 POINT (-84.512 39.1031) Yes Yes 8 131 0 0 0 1 0 0 0 1 Yes 4 Yes Yes GPC Decreased Intending to undertake in the next 2 years Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes 0.6000 64.5000 10.800000 0.00 0.6000 19.8000 0.6000 0.7000 0.1000 2.3000 3.0000 Yes 1.3000000 1.0000000 4.4000000 88.2000000 5.100000 No Yes 100.0000 Yes 39.103100 -84.512000 USA
2020 74418 Town of Breckenridge, CO Breckenridge United States of America North America No 5020 POINT (106.038 39.4817) Yes Yes 3 33 0 1 0 0 0 0 0 1 Yes 3 Yes Yes GPC This is our first year of calculation Not intending to undertake Do not know Base year emissions (absolute) target Yes Yes Yes 0.0000 33.0000 37.000000 0.00 1.0000 0.0000 0.0000 0.0000 4.0000 25.0000 30.0000 Yes 15.9000000 1.0000000 9.4000000 59.6000000 14.100000 No No 100.0000 Yes 39.499500 -106.043300 USA
2020 60339 Prefeitura de Anapolis Brazil Latin America Yes 386923 In progress In progress 2 41 NA NA NA NA NA NA NA NA Yes 1 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target Do not know Yes Intending to undertake in the next 2 years 0.0000 0.0000 0.000000 0.00 100.0000 0.0000 0.0000 0.0000 0.0000 0.0000 100.0000 Intending to undertake in the next 2 years 25.0000000 10.0000000 10.0000000 80.0000000 10.000000 No No 98.0000 Yes -21.359400 -48.065600 BRA
2020 50398 Ciudad de Juárez Juárez Mexico Latin America No 1391180 POINT (-106.425 31.6904) Yes Yes 4 54 NA NA NA NA NA NA NA NA Yes 1 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years Intending to undertake in the next 2 years Intending to undertake in the next 2 years 0.0000 0.0000 100.000000 0.00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 Do not know NA NA NA NA NA No Yes 70.0000 Yes 31.690400 -106.425000 MEX
2020 43937 Wellington City Council Wellington New Zealand Southeast Asia and Oceania No 210400 POINT (174.776 -41.2865) In progress Yes 6 110 0 0 0 1 0 0 0 1 Yes 5 In progress Yes GPC Decreased Intending to undertake in the next 2 years Not intending to undertake Base year emissions (absolute) target Yes Yes Not intending to undertake 2.0000 4.0000 10.000000 17.00 61.0000 NA NA NA NA 6.0000 NA Intending to undertake in the next 2 years NA NA NA NA NA No Yes 100.0000 Yes -41.286500 174.776000 NZL
2020 62868 Eskişehir Metropolitan Municipality Eskişehir Turkey Europe No 887475 POINT (30.5256 39.7667) In progress Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA 1 NA Intending to undertake in the next 2 years NA NA NA NA NA NA NA In progress NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 39.766700 30.525600 TUR
2020 50560 City of Oakland Oakland United States of America North America No 425195 POINT (-122.271 37.8044) Yes Yes 10 216 NA NA NA NA NA NA NA NA Yes 6 Yes Yes ICLEI Decreased Yes Do not know Base year emissions (absolute) target Yes Yes Yes 4.0000 0.0000 20.000000 5.00 21.0000 27.0000 0.0000 2.0000 13.0000 8.0000 47.0000 In progress NA NA NA NA NA Do not know Yes 100.0000 Intending to undertake in next 2 years 37.804400 -122.271000 USA
2020 848125 Oreamuno Costa Rica Latin America Yes 49000 In progress Do not know 1 25 NA NA NA NA NA NA NA NA Yes 1 Do not know In progress NA NA NA NA Base year intensity target Do not know Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 100.0000 Intending to undertake in next 2 years 9.997465 -83.845703 CRI
2020 73684 Carlos Tejedor Argentina Latin America No 11570 NA Intending to undertake in the next 2 years 9 106 NA NA NA NA NA NA NA NA NA 1 Intending to undertake in the next 2 years Yes GPC This is our first year of calculation Not intending to undertake Not intending to undertake NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA -34.587188 -58.392225 ARG
2020 59644 City of Culver City, CA Culver City United States of America North America No 39295 POINT (-118.4 34.02) In progress Yes 6 55 0 1 0 1 0 0 0 2 Yes 11 In progress In progress ICLEI NA NA NA Base year emissions (absolute) target Intending to undertake in the next 2 years Yes Yes 0.0000 0.0000 0.000000 0.00 25.0000 0.0000 0.0000 10.0000 50.0000 15.0000 90.0000 NA NA NA NA NA NA No NA 100.0000 Yes 34.020000 -118.400000 USA
2020 60633 La mairie de Bujumbura Bujumbura Burundi Africa No 1155678 POINT (29.3599 -3.36137) In progress Not intending to undertake 11 34 NA NA NA NA NA NA NA NA Yes 2 Not intending to undertake Not intending to undertake NA NA NA NA No target NA In progress In progress NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No No 60.0000 NA -3.361370 29.359900 BDI
2020 60092 City of Porvoo Porvoo Finland Europe Yes 50380 Yes Not intending to undertake 13 64 NA NA NA NA NA NA NA NA Yes 9 Not intending to undertake Yes Regional or country specific methodology Increased Intending to undertake in the next 2 years Yes Fixed level target Yes Yes Not intending to undertake 7.5500 0.0000 0.000000 0.00 73.9500 18.1900 0.0000 0.0000 0.0200 0.2900 74.2600 Yes 4.0000000 7.0000000 2.0000000 63.0000000 24.000000 No Yes 100.0000 Yes 60.393100 25.663900 FIN
2020 60092 City of Porvoo Porvoo Finland Europe Yes 50380 Yes Not intending to undertake 13 64 NA NA NA NA NA NA NA NA Yes 9 Not intending to undertake Yes Regional or country specific methodology Increased Intending to undertake in the next 2 years Yes Base year emissions (absolute) target Yes Yes Not intending to undertake 7.5500 0.0000 0.000000 0.00 73.9500 18.1900 0.0000 0.0000 0.0200 0.2900 74.2600 Yes 4.0000000 7.0000000 2.0000000 63.0000000 24.000000 No Yes 100.0000 Yes 60.393100 25.663900 FIN
2020 53829 City of Kingston, ON Kingston Canada North America No 124000 Yes Intending to undertake in the next 2 years 4 65 NA NA NA NA NA NA NA NA NA 1 Intending to undertake in the next 2 years Yes ICLEI NA NA Not intending to undertake Base year emissions (absolute) target Yes Yes Not intending to undertake NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No No NA Yes 44.305415 -76.428378 CAN
2020 35878 City of Sacramento Sacramento United States of America North America No 513624 POINT (-121.494 38.5816) Yes In progress 5 59 NA NA NA NA NA NA NA NA NA 5 Yes Yes ICLEI Decreased NA Do not know Base year emissions (absolute) target Yes Yes Yes 12.0000 0.0000 41.000000 1.00 14.0000 0.0000 0.0000 23.0000 3.0000 7.0000 25.0000 NA NA NA NA NA NA No Yes NA Yes 38.581600 -121.494000 USA
2020 35878 City of Sacramento Sacramento United States of America North America No 513624 POINT (-121.494 38.5816) Yes In progress 5 59 NA NA NA NA NA NA NA NA NA 5 Yes Yes ICLEI Decreased NA Do not know Fixed level target Yes Yes Yes 12.0000 0.0000 41.000000 1.00 14.0000 0.0000 0.0000 23.0000 3.0000 7.0000 25.0000 NA NA NA NA NA NA No Yes NA Yes 38.581600 -121.494000 USA
2020 58626 City of Racine, WI United States of America North America No 78860 In progress Intending to undertake in the next 2 years 2 26 NA NA NA NA NA NA NA NA Yes 1 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA Base year emissions (absolute) target Intending to undertake in the next 2 years Yes Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA Intending to undertake in the next 2 years NA NA NA NA NA No No 100.0000 Yes 40.768200 -74.234800 USA
2020 54517 City Örebro Örebro Sweden Europe No 155696 POINT (15.2066 59.2741) Yes Yes 11 76 NA NA NA NA NA NA NA NA NA 4 Yes Yes Regional or country specific methodology Decreased Do not know Yes Base year intensity target Yes Yes Yes 0.0000 0.0000 0.000000 0.00 0.0000 0.0000 0.0000 0.0000 0.0000 100.0000 100.0000 Yes 12.0000000 12.0000000 NA 73.0000000 3.000000 No Yes 100.0000 Yes 59.274100 15.206600 SWE
2020 54116 City of Dubuque Dubuque United States of America North America No 57882 POINT (-90.5071 42.5006) Yes Yes 1 9 0 1 0 1 0 0 0 2 Yes 3 Yes Yes ICLEI Decreased Not intending to undertake Yes Base year emissions (absolute) target Yes Yes Intending to undertake in the next 2 years 0.0000 37.8400 48.430000 0.00 1.0000 0.0000 0.0200 0.0000 0.0300 12.6800 13.7100 Not intending to undertake NA NA NA NA NA No No 100.0000 In progress 42.500600 -90.507100 USA
2020 54329 Bogor City Government Bogor Indonesia Southeast Asia and Oceania No 1048610 POINT (106.806 -6.5971) Yes In progress 9 93 NA NA NA NA NA NA NA NA NA 1 Yes Yes 2006 IPCC Guidelines Increased Not intending to undertake Yes Base year emissions (absolute) target Yes Yes Not intending to undertake 0.0000 0.0000 0.000000 0.00 100.0000 0.0000 0.0000 0.0000 0.0000 0.0000 100.0000 In progress 4.0000000 NA 0.0000000 2.0000000 NA No Yes 91.0000 In progress -6.597100 106.806000 IDN
2020 42123 City of Goiânia Goiânia Brazil Latin America No 1516113 POINT (-49.2648 -16.6869) Yes Do not know 3 38 NA NA NA NA NA NA NA NA Yes 2 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target In progress In progress Intending to undertake in the next 2 years 0.0000 0.0000 0.000000 0.00 90.0000 0.0000 8.0000 2.0000 0.0000 0.0000 90.0000 Intending to undertake in the next 2 years 1.0000000 0.0000000 54.0000000 45.0000000 0.000000 No Yes 99.0000 Intending to undertake in next 2 years -16.686900 -49.264800 BRA
2020 54113 City of Flagstaff Flagstaff United States of America North America No 75038 POINT (-111.631 35.1992) Yes Yes 5 20 NA NA NA NA NA NA NA NA Do not know 3 Yes Yes GPC Increased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 0.2000 28.0000 31.400000 0.00 6.6000 29.8000 0.0000 0.1000 3.4000 0.5000 10.5000 Yes 4.9000000 7.8000000 0.0000000 73.0000000 14.300000 No Yes 98.0000 Yes 35.199200 -111.631000 USA
2020 1499 Ajuntament de Barcelona Barcelona Spain Europe No 1636762 POINT (2.1775 41.3823) Yes Yes 13 200 NA NA NA NA NA NA NA NA Yes 13 Yes Yes GPC Increased Intending to undertake in the next 2 years Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 0.1600 0.0000 24.380000 0.00 11.3600 44.3900 0.2500 12.7600 0.9700 5.7300 18.0600 Yes 34.0000000 1.8000000 3.6000000 26.0000000 34.400000 Yes Yes 100.0000 Yes 41.382300 2.177500 ESP
2020 31170 Metropolitan Municipality of Lima Lima Peru Latin America No 9485405 POINT (-77.0283 -12.0433) Yes Yes 4 66 0 1 0 1 0 0 0 2 Yes 5 Yes Yes GPC Increased Intending to undertake in the next 2 years Intending to undertake in the next 2 years No target Intending to undertake in the next 2 years Yes In progress 0.0000 0.0000 40.000000 0.00 54.0000 0.0000 0.0000 0.0000 4.0000 2.0000 60.0000 Not intending to undertake 68.7200000 1.1000000 31.2700000 NA 12.000000 No Yes 90.0000 In progress -12.043300 -77.028300 PER
2020 50377 Municipio de Querétaro Mexico Latin America No 878931 Yes Yes 2 50 NA NA NA NA NA NA NA NA NA 1 In progress Yes 2006 IPCC Guidelines Increased Do not know Do not know No target Do not know Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Do not know Do not know NA Intending to undertake in next 2 years 20.587500 -100.392800 MEX
2020 50203 Gaziantep Metropolitan Municipality Gaziantep Turkey Europe No 2028563 Yes Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA 2 Yes Yes 2006 IPCC Guidelines Increased Do not know Intending to undertake in the next 2 years Fixed level target Yes NA Yes 0.0000 30.0000 56.000000 0.00 0.0000 0.0000 0.0000 14.0000 0.0000 0.0000 0.0000 NA NA NA NA NA NA NA NA NA NA 37.061176 37.379309 TUR
2020 50203 Gaziantep Metropolitan Municipality Gaziantep Turkey Europe No 2028563 Yes Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA 2 Yes Yes 2006 IPCC Guidelines Increased Do not know Intending to undertake in the next 2 years Base year emissions (absolute) target Yes NA Yes 0.0000 30.0000 56.000000 0.00 0.0000 0.0000 0.0000 14.0000 0.0000 0.0000 0.0000 NA NA NA NA NA NA NA NA NA NA 37.061176 37.379309 TUR
2020 31187 Seoul Metropolitan Government Seoul Republic of Korea East Asia No 10010983 POINT (126.978 37.5665) Yes Yes 1 16 NA NA NA NA NA NA NA NA Yes 1 Yes Yes GPC Decreased Not intending to undertake Yes Base year emissions (absolute) target Yes Yes Yes 0.2000 40.7000 24.900000 0.00 0.6000 26.3000 0.7000 5.3000 1.3000 0.0000 1.9000 Yes 65.1000000 NA 10.4000000 24.5000000 NA Yes Yes 100.0000 Yes 37.566500 126.978000 KOR
2020 49345 City of Birmingham Birmingham, AL United States of America North America Yes 209880 Intending to incorporate in the next 2 years Intending to undertake in the next 2 years 2 32 NA NA NA NA NA NA NA NA Yes 1 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA 100.0000 NA NA NA NA NA NA NA NA NA Intending to undertake in the next 2 years NA NA NA NA NA No No 100.0000 Intending to undertake in next 2 years 33.518600 -86.810400 USA
2020 831926 Ramallah State of Palestine Middle East No 66000 In progress Intending to undertake in the next 2 years 5 30 NA NA NA NA NA NA NA NA NA 5 Yes Not intending to undertake NA NA NA NA No target In progress Yes Yes NA NA NA NA NA NA NA NA NA NA NA In progress NA NA NA NA NA No No 100.0000 Not intending to undertake 31.903054 35.195225 PSE
2020 69995 Kemi Kemi Finland Europe No 20742 POINT (24.5637 65.7364) Yes Intending to undertake in the next 2 years 6 23 NA NA NA NA NA NA NA NA No 6 Intending to undertake in the next 2 years Yes NA Stayed the same Not intending to undertake Do not know Base year emissions (absolute) target Yes Yes In progress NA NA NA NA NA 41.0000 NA 59.0000 NA NA NA Yes NA NA NA NA NA No Yes 100.0000 Not intending to undertake 65.736400 24.563700 FIN
2020 52894 City of Winston-Salem Winston-Salem United States of America North America No 246328 POINT (-80.2442 36.0999) Yes Yes 5 65 0 1 0 0 0 0 0 1 Yes 3 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA No target Not intending to undertake Yes Not intending to undertake 0.0000 26.0000 34.260000 0.00 1.5000 34.2000 0.0400 0.0000 2.0000 2.0000 5.5000 In progress 1.0000000 0.2000000 7.0000000 90.0000000 1.800000 No Yes 100.0000 Yes 36.099900 -80.244200 USA
2020 43932 Auckland Council Auckland New Zealand Southeast Asia and Oceania No 1618400 POINT (174.742 -36.8153) Yes Yes 9 128 NA NA NA NA NA NA NA NA Yes 8 Yes Yes GPC Increased Yes Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 0.6000 3.4000 12.500000 17.20 60.5000 0.0000 0.0000 0.8000 0.2000 4.8000 82.7000 Not intending to undertake 3.6000000 1.0000000 0.7000000 82.8000000 11.700000 No Yes 100.0000 Yes -36.815300 174.742000 NZL
2020 834374 Tagum City Philippines Southeast Asia and Oceania No 259444 Yes Yes 5 92 NA NA NA NA NA NA NA NA Yes 15 Yes Yes 2006 IPCC Guidelines This is our first year of calculation In progress Yes Base year emissions (absolute) target Yes Yes In progress 0.0000 0.0000 NA 0.00 0.0000 0.0000 0.0000 NA NA 0.0000 NA NA 6.0000000 3.0000000 24.0000000 65.0000000 2.000000 No Yes 96.3700 Intending to undertake in next 2 years 14.516700 121.050000 PHL
2020 834374 Tagum City Philippines Southeast Asia and Oceania No 259444 Yes Yes 5 92 NA NA NA NA NA NA NA NA Yes 15 Yes Yes 2006 IPCC Guidelines This is our first year of calculation In progress Yes Base year intensity target Yes Yes In progress 0.0000 0.0000 NA 0.00 0.0000 0.0000 0.0000 NA NA 0.0000 NA NA 6.0000000 3.0000000 24.0000000 65.0000000 2.000000 No Yes 96.3700 Intending to undertake in next 2 years 14.516700 121.050000 PHL
2020 69973 Alcaldia de Barrancabermeja Barrancabermeja Colombia Latin America No 210729 POINT (-73.8724 7.06066) Yes Yes 1 6 NA NA NA NA NA NA NA NA No 1 In progress Intending to undertake in the next 2 years NA NA NA NA No target Not intending to undertake Do not know Not intending to undertake 0.0000 0.5000 1.500000 0.00 98.0000 0.0000 0.0000 0.0000 0.0000 0.0000 98.0000 Do not know 45.0000000 5.0000000 15.0000000 30.0000000 5.000000 Do not know Yes 93.0000 Intending to undertake in next 2 years 7.060660 -73.872400 COL
2020 69824 Västervik Västervik Municipality Sweden Europe No 36679 POINT (16.3484 57.9587) Yes Yes 3 37 NA NA NA NA NA NA NA NA Yes 3 Yes Yes Regional or country specific methodology Decreased Intending to undertake in the next 2 years Yes Fixed level target Yes Yes Yes 11.0000 0.0000 1.000000 0.00 36.0000 35.0000 0.0000 2.0000 0.0000 15.0000 51.0000 Yes NA NA NA NA NA No Yes 100.0000 Yes 57.958700 16.348400 SWE
2020 31149 City of Athens Athens Greece Europe No 664046 POINT (23.7275 37.9838) Yes Yes 5 99 NA NA NA NA NA NA NA NA Yes 15 Yes Yes GPC Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 12.7700 32.3000 26.400000 0.12 5.8900 0.0000 10.4000 0.0000 6.6500 5.4700 18.1300 Yes 51.6000000 1.8000000 8.5000000 21.2000000 17.000000 No Yes 100.0000 In progress 37.983800 23.727500 GRC
2020 50541 City of Greensboro Greensboro United States of America North America No 296710 POINT (-79.792 36.0726) Yes Yes 6 79 NA NA NA NA NA NA NA NA NA 1 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA Base year emissions (absolute) target Yes NA Yes 0.0000 33.0000 10.000000 0.10 3.5000 51.0000 0.0000 2.0000 0.3000 0.1000 4.0000 In progress NA NA NA NA NA No NA 100.0000 Yes 36.072600 -79.792000 USA
2020 35268 City of Boston Boston United States of America North America No 695926 POINT (-71.0598 42.3584) Yes Yes 8 89 NA NA NA NA NA NA NA NA Yes 4 Yes Yes GPC Increased Intending to undertake in the next 2 years Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes NA 1.0000 49.000000 NA 8.0000 30.0000 1.0000 8.0000 NA 3.0000 NA Yes 32.1000000 2.3000000 5.8000000 44.7000000 15.400000 Yes Yes 100.0000 Yes 42.358400 -71.059800 USA
2020 35903 Le Grand Casablanca Casablanca Morocco Africa No 3360000 POINT (-7.56806 33.5206) In progress In progress 3 34 NA NA NA NA NA NA NA NA Do not know 1 In progress Not intending to undertake NA NA NA NA Fixed level target In progress Yes In progress 6.5000 21.7000 5.000000 0.60 0.5000 0.0000 62.0000 2.5000 0.6000 0.6000 2.3000 In progress NA NA NA NA NA No Do not know 90.0000 In progress 33.520600 -7.568060 MAR
2020 54388 Iskandar Regional Development Authority Iskandar Malaysia Southeast Asia and Oceania No 2090000 POINT (100.992 1.45556) Yes Yes 3 33 NA NA NA NA NA NA NA NA No 6 Yes Yes GPC Increased Intending to undertake in the next 2 years Intending to undertake in the next 2 years Base year intensity target Yes Yes Yes 0.0000 63.3000 36.300000 0.00 0.0000 0.0000 0.4000 0.0000 0.0000 0.0000 0.0000 Yes 20.0000000 0.0000000 0.0000000 80.0000000 0.000000 No No 100.0000 Yes 1.482793 103.718422 MYS
2020 73301 City of Gretna, LA Gretna United States of America North America No 17935 POINT (-90.0542 29.9164) In progress Intending to undertake in the next 2 years 6 96 NA NA NA NA NA NA NA NA Yes 10 Yes Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years Intending to undertake in the next 2 years Intending to undertake in the next 2 years 0.0000 NA 99.000000 NA 0.0000 0.0000 NA NA 1.0000 0.0000 NA NA NA NA NA NA NA No No 100.0000 Not intending to undertake 29.916400 -90.054200 USA
2020 31146 Addis Ababa City Administration Addis Ababa Ethiopia Africa No 3689000 POINT (38.7544 9.02887) Yes Yes 3 44 0 1 0 0 0 0 0 1 Yes 1 Yes Yes GPC Increased Intending to undertake in the next 2 years In progress Base year emissions (absolute) target In progress Do not know Yes NA NA NA 10.00 70.0000 NA NA NA 10.0000 10.0000 100.0000 Yes 31.0000000 NA NA 15.0000000 54.000000 No Yes 76.6000 Yes 9.028870 38.754400 ETH
2020 31184 Prefeitura de São Paulo São Paulo Brazil Latin America No 11253503 POINT (-46.7382 -23.5595) Yes Yes 6 94 NA NA NA NA NA NA NA NA Yes 4 Do not know Yes GPC NA Do not know Yes Base year emissions (absolute) target In progress Yes Not intending to undertake 8.5000 3.2000 8.600000 0.00 66.6000 2.5000 2.4000 0.1000 0.5000 7.6000 74.7000 NA NA NA NA NA NA Do not know NA 100.0000 Yes -23.559500 -46.738200 BRA
2020 50673 Município de Faro Faro Portugal Europe No 61015 POINT (-7.93044 37.0194) In progress Yes 3 47 NA NA NA NA NA NA NA NA Yes 2 Yes Intending to undertake in the next 2 years NA NA NA NA Base year intensity target Yes Yes Yes 0.0000 0.0000 0.000000 0.00 0.0000 0.0000 0.0000 1.0000 11.0000 88.0000 99.0000 Yes 4.8900000 0.2300000 9.3800000 77.7200000 1.390000 No Yes 96.0000 In progress 37.019400 -7.930440 PRT
2020 31173 Comune di Milano Milano Italy Europe No 1404431 POINT (9.08635 45.8026) Yes Yes 36 182 NA NA NA NA NA NA NA NA Yes 16 In progress Yes GPC Decreased Intending to undertake in the next 2 years Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 6.2000 10.4000 44.900000 2.00 11.6000 0.0000 3.7000 7.7000 7.8000 5.7000 27.1000 Yes 42.3000000 2.9000000 5.2000000 39.3000000 10.300000 Yes Yes 100.0000 Yes 45.802600 9.086350 ITA
2020 60393 Municipalidad de Santiago Santiago Chile Latin America No 404495 POINT (-70.6693 -33.4489) Yes Yes 3 46 NA NA NA NA NA NA NA NA No 2 Yes Yes Regional or country specific methodology NA Intending to undertake in the next 2 years In progress Base year emissions (absolute) target Yes Yes Yes 0.0000 0.0000 24.000000 0.00 75.0000 0.0000 0.0000 1.0000 0.0000 0.0000 75.0000 In progress NA NA NA NA NA No No 100.0000 In progress -33.448900 -70.669300 CHL
2020 36158 Comune di Napoli Napoli Italy Europe No 983755 POINT (14.2514 40.842) In progress In progress 2 16 NA NA NA NA NA NA NA NA No 2 In progress Yes NA Decreased Do not know Not intending to undertake Base year emissions (absolute) target Yes Intending to undertake in the next 2 years In progress 0.0000 0.0000 22.000000 0.00 0.0000 0.0000 16.0000 61.0000 1.0000 0.0000 1.0000 Yes 34.0000000 NA 24.0000000 42.0000000 NA No No 100.0000 Intending to undertake in next 2 years 40.842000 14.251400 ITA
2020 49172 City of St. Petersburg St. Petersburg United States of America North America No 266000 Yes Yes 1 15 NA NA NA NA NA NA NA NA NA 1 Yes Yes GPC Do not know Not intending to undertake Not intending to undertake Base year emissions (absolute) target In progress In progress Yes NA 33.0000 42.000000 NA 5.0000 18.0000 0.0000 NA 2.0000 NA NA NA NA NA NA NA NA No Yes NA NA 27.793100 -82.665200 USA
2020 35853 City of Baltimore Baltimore United States of America North America No 593490 POINT (-76.6122 39.2904) Yes Yes 10 154 NA NA NA NA NA NA NA NA Yes 10 Yes Yes GPC Increased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 0.9900 31.1300 28.680000 0.00 1.5000 34.5300 0.2100 0.0700 0.2600 2.6300 4.3900 Yes 19.0000000 1.0000000 3.0000000 69.0000000 6.000000 No Yes 100.0000 Yes 39.290400 -76.612200 USA
2020 58489 Hoeje-Taastrup Kommune Hoeje-Taastrup Denmark Europe No 50686 POINT (12.2898 55.6563) Yes Yes 1 6 0 1 0 0 0 0 0 1 No 1 Yes Yes NA Decreased In progress Yes Base year emissions (absolute) target Yes Yes Yes 13.0000 13.0000 8.000000 0.00 11.0000 5.0000 1.0000 0.0000 4.0000 45.0000 60.0000 Yes 9.0000000 4.0000000 17.0000000 67.0000000 3.000000 No Yes 100.0000 Yes 55.656300 12.289800 DNK
2020 53254 City of Hobart Hobart Australia Southeast Asia and Oceania No 53684 POINT (147.281 -42.8901) Yes Yes 3 52 NA NA NA NA NA NA NA NA Yes 3 Yes Yes Regional or country specific methodology Decreased Not intending to undertake Yes No target Yes Yes Intending to undertake in the next 2 years NA NA 2.000000 NA 81.0000 NA NA 0.0000 7.0000 10.0000 NA Not intending to undertake NA NA NA NA NA No Yes 100.0000 Not intending to undertake -42.890100 147.281000 AUS
2020 60142 City of Kisumu Kisumu Kenya Africa No 1155574 POINT (34.7679 -0.0917) Yes In progress 6 102 1 2 1 3 0 1 0 8 Yes 7 Yes In progress NA NA NA NA No target In progress Yes In progress NA NA NA NA NA 0.0000 NA NA NA 0.0000 NA In progress NA NA NA NA NA No No 58.0000 Not intending to undertake -0.091700 34.767900 KEN
2020 59535 Town of Vail, CO Vail United States of America North America No 5434 POINT (-106.374 39.6403) Yes Yes 5 120 0 1 0 0 0 0 0 1 Yes 7 Yes Yes GPC This is our first year of calculation Intending to undertake in the next 2 years Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes In progress 7.0000 40.0000 7.000000 0.00 3.0000 0.0000 0.0000 11.0000 1.0000 31.0000 35.0000 Yes 10.0000000 2.5000000 6.0000000 79.0000000 2.500000 No Yes 100.0000 Yes 39.640300 -106.374000 USA
2020 19233 Município de Torres Vedras Torres Vedras Portugal Europe No 79465 POINT (-9.30148 38.7637) Intending to incorporate in the next 2 years Yes 6 51 0 1 0 0 0 1 0 2 Do not know 3 Yes Yes NA Decreased Do not know Yes Base year emissions (absolute) target Yes Yes Do not know 10.0000 10.0000 40.000000 1.00 20.0000 0.0000 10.0000 4.0000 1.0000 4.0000 26.0000 Do not know NA NA NA NA NA Do not know Yes 99.0000 Intending to undertake in next 2 years 38.763700 -9.301480 PRT
2020 1184 City of Austin Austin United States of America North America No 964254 POINT (-97.7431 30.2672) Yes Yes 4 90 NA NA NA NA NA NA NA NA Yes 8 Yes Yes GPC Increased Intending to undertake in the next 2 years Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 1.6000 26.0000 13.500000 0.00 0.0000 23.0000 0.0000 NA 7.5000 28.4000 35.9000 Yes 3.6000000 1.2000000 1.5000000 91.5000000 2.200000 No NA 100.0000 Yes 30.267200 -97.743100 USA
2020 59562 City of Urbana, IL United States of America North America No 41250 In progress Yes 32 352 NA NA NA NA NA NA NA NA NA 1 Yes Yes ICLEI NA Not intending to undertake Not intending to undertake Base year emissions (absolute) target NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 100.0000 NA 40.768200 -74.234800 USA
2020 60105 Kirklees Council Huddersfield United Kingdom of Great Britain and Northern Ireland Europe Yes 437400 In progress Not intending to undertake 3 24 0 0 0 0 0 1 0 1 Yes 3 Intending to undertake in the next 2 years Yes GPC NA Not intending to undertake Not intending to undertake Fixed level target In progress In progress Not intending to undertake 0.0000 8.5000 57.900000 0.00 0.0000 17.4000 0.0000 16.2000 0.0000 0.0000 0.0000 Intending to undertake in the next 2 years NA NA NA NA NA No No 100.0000 Not intending to undertake 58.981000 -2.960000 GBR
2020 60105 Kirklees Council Huddersfield United Kingdom of Great Britain and Northern Ireland Europe Yes 437400 In progress Not intending to undertake 3 24 0 0 0 0 0 1 0 1 Yes 3 Intending to undertake in the next 2 years Yes GPC NA Not intending to undertake Not intending to undertake Base year emissions (absolute) target In progress In progress Not intending to undertake 0.0000 8.5000 57.900000 0.00 0.0000 17.4000 0.0000 16.2000 0.0000 0.0000 0.0000 Intending to undertake in the next 2 years NA NA NA NA NA No No 100.0000 Not intending to undertake 58.981000 -2.960000 GBR
2020 35873 Municipality of Medellín Medellín Colombia Latin America No 2533424 POINT (-75.5735 6.22729) Yes Yes 7 128 NA NA NA NA NA NA NA NA Do not know 7 In progress Yes GPC This is our first year of calculation Do not know Yes Baseline scenario (business as usual) target In progress Yes In progress NA 8.2000 9.400000 NA 66.3000 NA 11.3000 4.8000 NA 0.1000 NA NA NA NA NA NA NA No Yes 95.0000 Yes 6.227290 -75.573500 COL
2020 56276 New Taipei City Government New Taipei Taiwan, Greater China East Asia No 4018696 POINT (121.446 25.0111) Yes Yes 5 27 NA NA NA NA NA NA NA NA Yes 4 Yes Yes GPC Decreased Not intending to undertake Yes Base year emissions (absolute) target Yes Yes Yes 0.0000 30.8000 35.300000 0.00 5.4000 8.1000 5.4000 5.7000 7.5000 1.8000 14.7000 Yes 28.5000000 3.0000000 1.5000000 59.0000000 8.000000 Yes Yes 97.2300 Yes 25.011100 121.446000 TWN
2020 35886 Comune di Torino Torino Italy Europe No 872316 POINT (7.668 45.1006) Yes Yes 3 57 0 0 1 0 0 0 0 1 Yes 22 Yes Yes Regional or country specific methodology Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 7.0000 10.0000 45.000000 2.00 17.0000 4.0000 1.0000 0.0000 8.0000 6.0000 33.0000 Yes 16.0000000 5.0000000 1.0000000 57.0000000 21.000000 Yes Yes 100.0000 In progress 45.100600 7.668000 ITA
2020 827048 Zhenjiang Municipal People’s Government China East Asia No 3186300 Yes Yes 2 2 NA NA NA NA NA NA NA NA NA 1 Yes Yes Regional or country specific methodology Do not know Yes Do not know Fixed level target Yes Yes Yes NA 60.4000 7.000000 NA NA 15.7000 18.8000 13.8000 9.8000 23.5000 NA Yes NA NA NA NA NA NA Do not know NA NA 32.190111 119.420058 CHN
2020 827048 Zhenjiang Municipal People’s Government China East Asia No 3186300 Yes Yes 2 2 NA NA NA NA NA NA NA NA NA 1 Yes Yes Regional or country specific methodology Do not know Yes Do not know Base year emissions (absolute) target Yes Yes Yes NA 60.4000 7.000000 NA NA 15.7000 18.8000 13.8000 9.8000 23.5000 NA Yes NA NA NA NA NA NA Do not know NA NA 32.190111 119.420058 CHN
2020 827048 Zhenjiang Municipal People’s Government China East Asia No 3186300 Yes Yes 2 2 NA NA NA NA NA NA NA NA NA 1 Yes Yes Regional or country specific methodology Do not know Yes Do not know Base year intensity target Yes Yes Yes NA 60.4000 7.000000 NA NA 15.7000 18.8000 13.8000 9.8000 23.5000 NA Yes NA NA NA NA NA NA Do not know NA NA 32.190111 119.420058 CHN
2020 63562 City of South Bend, IN South Bend United States of America North America No 102026 POINT (41.6754 -86.2532) Yes Intending to undertake in the next 2 years 5 56 NA NA NA NA NA NA NA NA Do not know 1 Intending to undertake in the next 2 years Yes GPC This is our first year of calculation Not intending to undertake Not intending to undertake Fixed level target Yes Yes Intending to undertake in the next 2 years 0.0000 48.6000 0.000000 0.00 0.4000 42.3000 0.0000 0.0000 0.3000 8.4000 9.1000 Intending to undertake in the next 2 years NA NA NA NA NA No No 100.0000 Not intending to undertake 41.676700 -86.269600 USA
2020 63562 City of South Bend, IN South Bend United States of America North America No 102026 POINT (41.6754 -86.2532) Yes Intending to undertake in the next 2 years 5 56 NA NA NA NA NA NA NA NA Do not know 1 Intending to undertake in the next 2 years Yes GPC This is our first year of calculation Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Intending to undertake in the next 2 years 0.0000 48.6000 0.000000 0.00 0.4000 42.3000 0.0000 0.0000 0.3000 8.4000 9.1000 Intending to undertake in the next 2 years NA NA NA NA NA No No 100.0000 Not intending to undertake 41.676700 -86.269600 USA
2020 841003 Ayuntamiento de Apodaca Mexico Latin America No 5247 Do not know Do not know NA NA NA NA NA NA NA NA NA NA NA 1 Do not know Not intending to undertake NA NA NA NA No target Do not know Do not know Do not know NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Do not know Do not know 95.0000 Not intending to undertake 25.783300 -100.183300 MEX
2020 10894 City of Los Angeles Los Angeles United States of America North America No 4021488 POINT (-118.244 34.0522) In progress Yes 6 118 NA NA NA NA NA NA NA NA Do not know 6 Yes Yes GPC Increased Intending to undertake in the next 2 years Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 1.0000 18.0000 31.000000 4.00 8.0000 10.0000 0.0000 7.0000 11.0000 10.0000 33.0000 Yes 3.0000000 1.0000000 NA 80.0000000 14.000000 No Yes 100.0000 Yes 34.052200 -118.244000 USA
2020 10894 City of Los Angeles Los Angeles United States of America North America No 4021488 POINT (-118.244 34.0522) In progress Yes 6 118 NA NA NA NA NA NA NA NA Do not know 6 Yes Yes GPC Increased Intending to undertake in the next 2 years Not intending to undertake Fixed level target Yes Yes Yes 1.0000 18.0000 31.000000 4.00 8.0000 10.0000 0.0000 7.0000 11.0000 10.0000 33.0000 Yes 3.0000000 1.0000000 NA 80.0000000 14.000000 No Yes 100.0000 Yes 34.052200 -118.244000 USA
2020 44210 Yeosu Metropolitan Government Yeosu-si Republic of Korea East Asia No 282786 Yes Yes 6 82 0 1 0 0 0 0 0 1 Yes 12 In progress Yes 2006 IPCC Guidelines Increased Do not know Yes NA NA NA Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA NA 34.7000000 3.8000000 13.5000000 26.0000000 22.000000 No NA 0.9600 Yes 34.754626 127.659859 KOR
2020 31157 City of Delhi Delhi India South and West Asia No 11034555 POINT (77.1025 28.704) Intending to incorporate in the next 2 years Yes 2 40 NA NA NA NA NA NA NA NA Yes 1 Yes In progress 2006 IPCC Guidelines NA NA NA Base year emissions (absolute) target Yes NA Yes NA 58.1100 27.900000 NA 9.7600 1.3600 NA 2.0000 2.8700 NA NA In progress 52.2000000 NA 6.9000000 41.0000000 NA No Yes 85.0000 Yes 28.704000 77.102500 IND
2020 31157 City of Delhi Delhi India South and West Asia No 11034555 POINT (77.1025 28.704) Intending to incorporate in the next 2 years Yes 2 40 NA NA NA NA NA NA NA NA Yes 1 Yes In progress 2006 IPCC Guidelines NA NA NA Baseline scenario (business as usual) target Yes NA Yes NA 58.1100 27.900000 NA 9.7600 1.3600 NA 2.0000 2.8700 NA NA In progress 52.2000000 NA 6.9000000 41.0000000 NA No Yes 85.0000 Yes 28.704000 77.102500 IND
2020 826407 Munícipio de Mirandela Mirandela Portugal Europe No 11852 POINT (-7.1753 41.51) Yes Yes 4 64 NA NA NA NA NA NA NA NA No 1 Yes NA NA NA NA NA NA Do not know In progress Yes 0.0000 0.0000 20.000000 0.00 0.0000 0.0000 75.0000 NA 5.0000 0.0000 5.0000 NA NA NA NA NA NA Yes NA 100.0000 In progress 41.510000 -7.175300 PRT
2020 60168 Derry City & Strabane Derry United Kingdom of Great Britain and Northern Ireland Europe Yes 150679 In progress Yes 8 123 0 2 2 1 0 0 0 5 Yes 3 Yes Intending to undertake in the next 2 years NA NA NA NA Fixed level target In progress In progress Yes NA NA NA NA NA NA NA NA NA NA NA In progress NA NA NA NA NA No No 100.0000 Not intending to undertake 54.826115 -7.462799 GBR
2020 841098 Municipalidad Distrital de Chimbote Peru Latin America No 338 Intending to incorporate in the next 2 years In progress 2 18 1 2 0 0 0 1 0 4 Yes 1 In progress Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA Intending to undertake in the next 2 years 10.0000000 5.0000000 45.0000000 30.0000000 10.000000 No Do not know 60.0000 Intending to undertake in next 2 years -3.785283 -80.063983 PER
2020 31179 Gemeente Rotterdam Rotterdam Netherlands Europe No 638181 POINT (4.45093 51.9164) Yes Yes 10 90 NA NA NA NA NA NA NA NA NA 9 Yes Yes City specific methodology Decreased Do not know Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 3.0000 86.6000 8.200000 0.00 0.0000 0.0000 0.5000 0.1000 0.1000 1.5000 1.6000 Yes 16.7000000 33.7000000 2.2000000 29.7000000 17.600000 Yes Yes 100.0000 Not intending to undertake 51.916400 4.450930 NLD
2020 43917 Sofia Municipality Sofia Bulgaria Europe No 1479902 POINT (23.3219 42.6977) Yes Yes 7 61 NA NA NA NA NA NA NA NA Do not know 4 Yes Yes GPC Decreased Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes In progress 0.8200 68.3700 0.430000 0.00 9.7200 16.2700 0.0000 0.2900 2.6700 1.4300 13.8200 In progress NA 1.8000000 37.8000000 30.7000000 29.700000 No Yes 100.0000 In progress 42.697700 23.321900 BGR
2020 54291 Chengdu Municipal Government Chengdu China East Asia No 16581000 POINT (104.076 30.6719) Yes In progress NA NA NA NA NA NA NA NA NA NA NA 1 NA Yes Regional or country specific methodology NA Do not know NA Base year intensity target Yes In progress Yes NA NA NA NA NA NA NA NA NA NA NA Do not know NA NA NA NA NA No NA NA NA 30.671900 104.076000 CHN
2020 840161 Municipality of Del Carmen Del Carmen Philippines Southeast Asia and Oceania No 20000 POINT (125.97 9.869) Yes Yes 1 25 NA NA NA NA NA NA NA NA NA 1 Yes Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years Yes In progress NA NA NA NA NA NA NA NA NA NA NA NA 0.0000000 100.0000000 104.0000000 NA NA No No 85.0000 In progress 9.869000 125.970000 PHL
2020 55372 Prefeitura Municipal de Canoas Canoas Brazil Latin America No 341343 POINT (-51.1862 -29.9133) Yes Intending to undertake in the next 2 years 6 87 0 0 0 3 0 0 0 3 Yes 6 In progress In progress GPC NA NA NA Fixed level target In progress Yes Intending to undertake in the next 2 years NA NA 0.100000 NA 99.9000 NA NA NA NA NA NA In progress NA NA NA NA NA NA NA 98.0000 Yes -29.913300 -51.186200 BRA
2020 840244 Prefeitura de Águas da Prata Brazil Latin America No 8137 Intending to incorporate in the next 2 years Yes 10 36 NA NA NA NA NA NA NA NA NA 8 Yes Intending to undertake in the next 2 years NA NA NA NA No target Intending to undertake in the next 2 years In progress Intending to undertake in the next 2 years 0.0000 0.0000 0.000000 0.00 75.0000 4.0000 0.0000 19.0000 0.0000 2.0000 77.0000 NA NA NA NA NA NA No Do not know 100.0000 In progress -21.936900 -46.716900 BRA
2020 74575 Dane County United States of America North America No 542400 Yes Yes 2 45 0 1 0 0 1 0 0 2 Yes 2 Yes Yes NA Decreased Do not know Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes NA NA NA NA NA NA NA NA NA NA NA Yes NA NA NA NA NA Do not know Yes 99.0000 Intending to undertake in next 2 years 38.647300 -77.345900 USA
2020 50361 Ayuntamiento de Hermosillo Hermosillo Mexico Latin America No 913318 POINT (-110.961 29.0892) Yes Yes 9 168 0 0 1 0 0 0 0 1 Yes 22 Yes Yes GPC Stayed the same Yes Yes Baseline scenario (business as usual) target Yes Yes Yes 1.0000 0.0000 59.000000 0.00 0.0000 0.0000 0.0000 0.0000 40.0000 0.0000 40.0000 In progress 21.0000000 3.0000000 17.0000000 51.0000000 8.000000 No Yes 98.0000 Yes 29.089200 -110.961000 MEX
2020 31115 City of Johannesburg Johannesburg South Africa Africa No 5740000 POINT (28.0473 -26.2041) Yes Yes 7 166 0 1 0 1 1 1 0 4 Yes 3 Yes Yes GPC Decreased Not intending to undertake Yes Baseline scenario (business as usual) target Yes Yes Yes 0.3000 99.3000 0.000000 0.00 0.0000 0.0000 0.0000 0.0000 0.4000 0.0000 0.4000 In progress 7.0000000 0.0000000 25.0000000 37.0000000 31.000000 No No 98.0000 Intending to undertake in next 2 years -26.204100 28.047300 ZAF
2020 37261 City of Pietermaritzburg Pietermaritzburg South Africa Africa No 618536 POINT (30.3794 -29.6006) Yes Intending to undertake in the next 2 years 10 215 0 1 0 1 0 0 0 2 Yes 10 Yes Intending to undertake in the next 2 years NA NA NA NA No target Yes Yes Yes NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No Yes 96.0000 Yes -29.600600 30.379400 ZAF
2020 60267 Prefeitura de Guarujá Guarujá Brazil Latin America No 290752 POINT (-46.2569 -23.9946) Yes Intending to undertake in the next 2 years 4 70 NA NA NA NA NA NA NA NA NA 4 Intending to undertake in the next 2 years In progress NA NA NA NA No target NA Yes Do not know 8.2000 2.9000 9.100000 0.00 68.1000 2.6000 3.7000 0.0000 0.0000 5.4000 73.5000 NA NA NA NA NA NA No Yes 82.7000 Yes -23.994600 -46.256900 BRA
2020 60126 Tartu City Council Tartu Estonia Europe No 95399 POINT (26.7219 58.38) Yes Yes 2 18 NA NA NA NA NA NA NA NA Yes 1 Yes Yes 2006 IPCC Guidelines Increased Not intending to undertake Not intending to undertake Fixed level target Yes Yes Yes NA NA NA NA NA NA NA NA NA NA NA In progress NA NA NA NA NA No No 99.0000 Yes 58.380000 26.721900 EST
2020 35870 City of Miami Miami United States of America North America No 467963 POINT (-80.1918 25.7617) Yes Yes 9 141 0 1 0 0 0 0 0 1 Yes 9 Yes Yes GPC Decreased Intending to undertake in the next 2 years Not intending to undertake Fixed level target Yes Yes In progress 0.0000 2.1000 72.300000 0.00 0.0000 22.3000 0.3000 1.5000 1.5000 0.0000 1.5000 In progress NA NA 3.2000000 78.1000000 3.800000 No No 100.0000 Not intending to undertake 25.761700 -80.191800 USA
2020 63941 Broward County, FL Broward United States of America North America No 1919644 POINT (80.3659 26.1901) Yes Yes 3 75 NA NA NA NA NA NA NA NA NA 13 Yes Yes ICLEI Increased Yes Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 0.0000 2.1000 72.300000 0.00 0.0000 22.3000 0.3000 1.5000 1.5000 0.0000 1.5000 Yes NA NA NA NA NA No No 100.0000 Yes 38.631700 -90.479000 USA
2020 73706 City of Alameda Alameda United States of America North America No 75961 POINT (122.163 37.4522) In progress Yes 3 48 NA NA NA NA NA NA NA NA Yes 3 Yes Yes GPC Increased Intending to undertake in the next 2 years Not intending to undertake Base year emissions (absolute) target Yes Yes Yes 9.0000 0.0000 0.000000 0.00 55.0000 0.0000 0.0000 0.0000 0.0000 36.0000 91.0000 Intending to undertake in the next 2 years NA NA NA NA NA No No NA Not intending to undertake 40.768200 -74.234800 USA
2020 68388 Prefeitura de Morungaba Morungaba Brazil Latin America No 13622 POINT (-46.7929 -22.8767) Yes Do not know 1 4 NA NA NA NA NA NA NA NA No 1 Do not know In progress NA NA NA NA No target In progress Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA No Yes 100.0000 Yes -22.876700 -46.792900 BRA
2020 36286 Comune di Ferrara Ferrara Italy Europe No 132009 POINT (11.619 44.8357) Intending to incorporate in the next 2 years Yes 6 76 NA NA NA NA NA NA NA NA NA 25 Yes Not intending to undertake NA NA NA NA Base year emissions (absolute) target Yes Yes Yes 5.0000 23.7000 33.100000 1.00 20.0000 4.2000 1.0000 0.0000 8.0000 0.0000 29.0000 NA NA NA NA NA NA Yes Yes 100.0000 In progress 44.835700 11.619000 ITA
2020 826429 Município de Figueira da Foz Figueira da Foz Portugal Europe No 62125 POINT (-8.8576 40.1521) Intending to incorporate in the next 2 years Yes 3 21 NA NA NA NA NA NA NA NA NA 6 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA NA NA Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Intending to undertake in next 2 years 40.152100 -8.857600 PRT
2020 834083 City of Eau Claire, WI United States of America North America No 67000 Yes Yes 3 34 NA NA NA NA NA NA NA NA No 3 Yes Yes ICLEI Stayed the same Not intending to undertake In progress Fixed level target Yes Yes Yes 2.0000 34.6000 14.800000 0.00 7.3000 27.0000 0.0000 0.6000 0.0000 13.7000 21.0000 In progress NA NA NA NA NA No NA 100.0000 Not intending to undertake 44.819900 -91.494900 USA
2020 831999 Concejo Municipal de Distrito de Monte Verde Costa Rica Latin America No 5253 Yes Yes 4 40 NA NA NA NA NA NA NA NA Do not know 4 In progress Yes Regional or country specific methodology This is our first year of calculation Not intending to undertake Not intending to undertake Base year emissions (absolute) target Yes Yes Not intending to undertake 0.0000 0.0000 0.000000 13.37 0.0000 0.0000 0.0000 70.6700 0.0800 15.8800 29.3300 Not intending to undertake 25.7600000 6.8200000 77.0200000 20.9600000 53.280000 No No NA Yes 10.275000 -84.825500 CRI
2020 73750 Tarakan City Indonesia Southeast Asia and Oceania No 245784 Yes Yes 5 30 NA NA NA NA NA NA NA NA Yes 1 Yes In progress GPC NA NA NA No target Intending to undertake in the next 2 years Intending to undertake in the next 2 years Intending to undertake in the next 2 years 0.0000 0.0000 78.000000 0.00 0.0000 0.0000 22.0000 0.0000 0.0000 0.0000 0.0000 Yes 4.0000000 0.0000000 6.0000000 90.0000000 0.000000 No Yes 77.0000 Intending to undertake in next 2 years 3.300000 117.633300 IDN
2020 74546 City of Milwaukie, OR United States of America North America Yes 20291 Yes Yes 3 30 0 0 0 1 0 0 0 1 Yes 3 Yes Yes 2006 IPCC Guidelines NA NA Do not know Fixed level target NA NA Yes 0.1700 13.9836 36.800000 0.00 25.2400 0.0000 0.0700 18.1000 0.0000 5.5000 30.7400 Not intending to undertake NA NA NA NA NA No No 100.0000 Yes 45.444700 -122.622100 USA
2020 54110 City of Santa Monica Santa Monica United States of America North America No 91411 POINT (-118.481 34.0219) Yes Yes 6 84 NA NA NA NA NA NA NA NA NA 10 Yes Yes ICLEI Decreased Yes Intending to undertake in the next 2 years Base year emissions (absolute) target Yes Yes Yes 0.0000 0.0000 0.000000 0.00 0.0000 0.0000 NA 0.0000 100.0000 0.0000 100.0000 NA NA NA NA NA NA No No 100.0000 Yes 34.021900 -118.481000 USA
2020 839666 Municipio de Escuintla Guatemala Latin America No 170543 Yes Yes 2 15 NA NA NA NA NA NA NA NA No 3 Yes Yes GPC Do not know Do not know In progress Base year intensity target Yes Intending to undertake in the next 2 years Yes 5.0000 30.0000 0.000000 0.00 10.0000 0.0000 50.0000 5.0000 0.0000 0.0000 10.0000 Do not know NA NA NA NA NA No No 90.0000 In progress 14.305000 -90.785000 GTM
2020 31111 Tokyo Metropolitan Government Tokyo Japan East Asia No 13951636 POINT (139.41 35.41) Yes Yes 4 0 NA NA NA NA NA NA NA NA Yes 10 Yes Yes GPC Decreased Do not know Not intending to undertake Base year emissions (absolute) target Yes Yes Yes NA 20.0000 58.000000 NA NA NA 2.0000 20.0000 NA NA NA Yes 36.0000000 13.0000000 NA 27.0000000 23.000000 No Yes 100.0000 Yes 35.410000 139.410000 JPN
2020 31111 Tokyo Metropolitan Government Tokyo Japan East Asia No 13951636 POINT (139.41 35.41) Yes Yes 4 0 NA NA NA NA NA NA NA NA Yes 10 Yes Yes GPC Decreased Do not know Not intending to undertake Fixed level target Yes Yes Yes NA 20.0000 58.000000 NA NA NA 2.0000 20.0000 NA NA NA Yes 36.0000000 13.0000000 NA 27.0000000 23.000000 No Yes 100.0000 Yes 35.410000 139.410000 JPN
2020 54389 Taichung City Government Taichung Taiwan, Greater China East Asia No 2816917 POINT (120.647 24.1619) Yes Yes 3 65 NA NA NA NA NA NA NA NA Yes 3 Yes Yes GPC Increased Yes In progress Base year emissions (absolute) target Yes Yes Yes 1.1400 29.8500 14.970000 0.00 0.3600 6.3100 46.9200 0.0700 0.2600 0.1200 0.7400 Yes 24.4000000 NA NA 80.5000000 NA No Yes 95.8600 Yes 24.161900 120.647000 TWN
2020 54579 Sekhukhune District Municipality Sekhukhune District Municipality South Africa Africa No 1076840 POINT (29.974 -24.8335) Yes Yes 1 15 NA NA NA NA NA NA NA NA NA 1 NA In progress NA NA NA NA No target NA NA Not intending to undertake NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA -24.833500 29.974000 ZAF
2020 31052 City of Cardiff Cardiff United Kingdom of Great Britain and Northern Ireland Europe No 367000 POINT (-3.17909 51.4816) Yes Yes 4 49 NA NA NA NA NA NA NA NA Do not know 3 Yes Yes Regional or country specific methodology Decreased Do not know Yes Base year emissions (absolute) target In progress Yes Intending to undertake in the next 2 years NA NA NA NA NA NA NA NA NA NA NA Intending to undertake in the next 2 years NA NA NA NA NA NA Yes 100.0000 NA 51.481600 -3.179090 GBR
2020 35449 Stadt Zürich Zürich Switzerland Europe No 434008 POINT (8.53918 47.3686) Yes Yes 7 34 NA NA NA NA NA NA NA NA Yes 7 In progress Yes NA Decreased Intending to undertake in the next 2 years Yes Base year emissions (absolute) target Yes Yes Yes 2.5100 0.0000 0.000000 0.00 75.9200 6.3700 0.0000 11.5100 1.2600 2.4300 79.6100 Yes 41.0000000 8.0000000 NA 25.0000000 26.000000 No Yes 100.0000 Yes 47.368600 8.539180 CHE
2020 59124 City of Natchez, MS Natchez United States of America North America No 15000 POINT (-91.4032 31.5604) Do not know Do not know NA NA NA NA NA NA NA NA NA NA No 1 Do not know Not intending to undertake NA NA NA NA No target Do not know Do not know NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA Do not know 99.0000 Not intending to undertake 31.560400 -91.403200 USA
2020 58871 City of Salem, MA Salem United States of America North America No 43559 POINT (-70.8967 42.5195) Yes Yes 4 61 NA NA NA NA NA NA NA NA NA 4 In progress In progress NA NA NA NA Base year emissions (absolute) target Yes Intending to undertake in the next 2 years Yes NA NA NA NA NA NA NA NA NA NA NA Yes NA NA NA NA NA NA NA NA NA 42.519500 -70.896700 USA
2020 833284 West Midlands Combined Authority United Kingdom of Great Britain and Northern Ireland Europe Yes 2928592 Yes Intending to undertake in the next 2 years 4 55 0 1 1 0 0 1 0 3 Yes 10 Yes Yes GPC This is our first year of calculation Intending to undertake in the next 2 years Do not know Base year emissions (absolute) target Yes Yes Intending to undertake in the next 2 years 12.0000 3.8000 31.400000 NA 2.8000 15.1000 0.2000 2.5000 NA 47.4000 NA In progress 10.1000000 0.7000000 1.3000000 85.0000000 2.800000 Yes No 100.0000 Not intending to undertake 52.505003 -1.964396 GBR
2020 35874 City of Phoenix Phoenix United States of America North America No 1660272 POINT (-112.074 33.4484) Yes Yes 5 74 NA NA NA NA NA NA NA NA Yes 7 Yes Yes GPC Decreased Intending to undertake in the next 2 years Intending to undertake in the next 2 years Base year emissions (absolute) target In progress Yes Yes 0.4000 26.7000 41.100000 3.40 3.4000 18.8000 0.0000 0.0000 4.4000 1.8000 13.0000 Yes 1.9000000 0.6000000 1.0000000 94.8000000 1.600000 No Yes 100.0000 Yes 33.448400 -112.074000 USA
2020 42178 Distrito Metropolitano de Quito Quito Ecuador Latin America No 2239191 POINT (-78.5167 -0.2333) Yes Yes 5 69 NA NA NA NA NA NA NA NA Yes 5 Yes In progress GPC NA NA NA Baseline scenario (business as usual) target Yes Yes In progress 0.1000 0.0000 NA 0.00 90.0000 0.0000 9.9000 0.0000 0.0000 0.0000 90.0000 In progress 61.0000000 0.3000000 0.0000000 23.0000000 15.300000 Yes Yes 99.0000 Yes -0.233300 -78.516700 ECU
2020 848129 Esquías Honduras Latin America Yes 18308 In progress Yes 2 5 NA NA NA NA NA NA NA NA Yes 1 Not intending to undertake NA NA NA NA NA No target NA Do not know NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA 73.0000 Intending to undertake in next 2 years 14.744453 -87.370397 HND
2020 54632 Prefeitura de Caruaru Caruaru Brazil Latin America No 314912 Intending to incorporate in the next 2 years Intending to undertake in the next 2 years 1 20 0 0 0 1 0 0 0 1 Yes 1 Intending to undertake in the next 2 years Intending to undertake in the next 2 years NA NA NA NA Base year emissions (absolute) target Intending to undertake in the next 2 years Yes Intending to undertake in the next 2 years NA NA NA NA 100.0000 NA NA NA NA NA NA Intending to undertake in the next 2 years NA NA NA NA NA No Yes 60.0000 Yes -20.638300 -51.109200 BRA
2020 831674 Município de Amarante Amarante Portugal Europe No 56217 Do not know Yes 4 44 0 0 1 0 0 1 0 2 Do not know 3 Yes Not intending to undertake NA NA NA NA No target Do not know Do not know Do not know NA NA NA NA NA NA NA NA NA NA NA Do not know NA NA NA NA NA Do not know Do not know 99.0000 In progress 41.266700 -8.083300 PRT
# Save output table
write.csv(Cities_Responses_KPI_Location, "CDP-Cities-KPI.csv")